// !LANGUAGE: +InlineClasses inline class ConstructorWithDefaultVisibility(val x: Int) inline class PublicConstructor public constructor(val x: Int) inline class InternalConstructor internal constructor(val x: Int) inline class ProtectedConstructor protected constructor(val x: Int) inline class PrivateConstructor private constructor(val x: Int)