Files
Alexander Doroshko cea7ba643a Better fix for KTIJ-11594 File Nesting configured for Kotlin files makes files disappear from the Project View
it doesn't introduce regression like KTIJ-27970

GitOrigin-RevId: 8c63baeb436df4bf60dd5d1459984d7e38a0d3cf
2023-11-29 22:32:14 +00:00

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