c57864e46c
Since we're not yet sure of the design of Experimental/UseExperimental, we're making them "experimental" themselves in some sense, in that the user is required to provide the magic argument "-Xuse-experimental=kotlin.Experimental" to be allowed to use either Experimental or UseExperimental. This is more convenient than the previous approach of "-language-version 1.3 -Xskip-metadata-version-check" because it's simpler and does not cause pre-release binaries to be produced
14 lines
573 B
Plaintext
Vendored
14 lines
573 B
Plaintext
Vendored
package
|
|
|
|
@Marker public fun f(): kotlin.Unit
|
|
public fun use1(): kotlin.Unit
|
|
@Marker public fun use2(): kotlin.Unit
|
|
@kotlin.UseExperimental(markerClass = {Marker::class}) public fun use3(): kotlin.Unit
|
|
|
|
@kotlin.Experimental public final annotation class Marker : kotlin.Annotation {
|
|
public constructor Marker()
|
|
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
|
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
|
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
|
}
|