10 lines
105 B
Plaintext
Vendored
10 lines
105 B
Plaintext
Vendored
class Foo {
|
|
@Synchronized
|
|
fun foo(): Int {
|
|
return 5
|
|
}
|
|
}
|
|
|
|
Foo().foo()
|
|
|
|
// RESULT: 5: I |