mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
it doesn't introduce regression like KTIJ-27970 GitOrigin-RevId: 8c63baeb436df4bf60dd5d1459984d7e38a0d3cf
28 lines
436 B
Plaintext
28 lines
436 B
Plaintext
// PATH: Foo.kt
|
|
// SHOW_MEMBERS: TRUE
|
|
|
|
// NESTING_RULE: .kt->.txt
|
|
// NESTING_RULE: .kt->Impl.kt
|
|
|
|
// EXPAND_ROW: 1
|
|
// EXPAND_ROW: 5
|
|
// EXPAND_ROW: 4
|
|
|
|
// FILE: Foo.kt
|
|
class Foo {val foo = 0}
|
|
|
|
// FILE: FooImpl.kt
|
|
class FooImpl {val fooImpl = 0}
|
|
|
|
// FILE: Foo.txt
|
|
|
|
// FILE: Bar.kt
|
|
class Bar1 {val bar1 = 0}
|
|
class Bar2 {val bar2 = 0}
|
|
|
|
// FILE: BarImpl.kt
|
|
class BarImpl1 {val barImpl1 = 0}
|
|
class BarImpl2 {val barImpl2 = 0}
|
|
|
|
// FILE: Bar.txt
|