4 <bold>constructor(n: Int)</bold> (in A)
3 	<bold>super</bold>(1);
6 	constructor() : <bold>this(1)</bold> (in constructor A())
7 	A a = new <bold>A</bold>(1);
9 	class B : <bold>A(1)</bold> (in B)
12 	constructor() : <bold>super(1)</bold> (in constructor C())
16 	val x = <bold>A(1)</bold> (in test())
16 		<bold>val x</bold> = A(1) (in test())
