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