Files
kotlin-fork/idea/testData/quickfix/modifiers/addInnerModifier.kt.todo
T
2015-08-18 21:26:42 +03:00

9 lines
118 B
Plaintext
Vendored

// "Add 'inner' modifier" "true"
class A {
fun foo() = 42
class B {
fun bar() = <caret>foo()
}
}