10 lines
312 B
Plaintext
Vendored
10 lines
312 B
Plaintext
Vendored
// "Create member function 'foo'" "true"
|
|
class Settings
|
|
|
|
fun isModified(settings: Settings, c: C) = c.foo(settings)
|
|
|
|
class C {
|
|
fun foo(settings: Settings): Any {
|
|
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
} |