4d9b19da82
#KT-18539 Fixed
10 lines
220 B
Plaintext
Vendored
10 lines
220 B
Plaintext
Vendored
// "Create member function 'C.foo'" "true"
|
|
class SetOptions
|
|
|
|
fun isModified(setOptions: SetOptions, c: C) = c.foo(setOptions)
|
|
|
|
class C {
|
|
fun foo(options: SetOptions): Any {
|
|
TODO("Not yet implemented")
|
|
}
|
|
} |