28 lines
719 B
Plaintext
Vendored
28 lines
719 B
Plaintext
Vendored
FILE: enum.kt
|
|
public? abstract interface Some() {
|
|
}
|
|
public? final object O1() : R/Some/ {
|
|
}
|
|
public? final object O2() : R/Some/ {
|
|
}
|
|
public? final enum class SomeEnum() {
|
|
public? constructor(x: R/Some/)
|
|
|
|
public? final enum entry FIRST() : R/SomeEnum/ {
|
|
public? open? override function check(y: R/Some/): R/error: Symbol not found/ {
|
|
STUB
|
|
}
|
|
|
|
}
|
|
|
|
public? final enum entry SECOND() : R/SomeEnum/ {
|
|
public? open? override function check(y: R/Some/): R/error: Symbol not found/ {
|
|
STUB
|
|
}
|
|
|
|
}
|
|
|
|
public? abstract function check(y: R/Some/): R/error: Symbol not found/
|
|
|
|
}
|