KT-1389 Ctrl-Alt-B on class declaration does not work - one more test, remove class info from test info, fix order of test data

#KT-1389 In Progress
This commit is contained in:
Nikolay Krasko
2012-08-15 22:09:24 +04:00
parent 0b97b14642
commit 1b4603a64a
3 changed files with 30 additions and 4 deletions
@@ -0,0 +1,11 @@
package testing
open class Test
open class TestOther : <caret>Test()
class TestOtherMore : TestOther()
// REF: Test
// REF: TestOther
// REF: TestOtherMore
@@ -2,6 +2,9 @@ package testing
open class <caret>Test
class TestOther : Test()
open class TestOther : Test()
// REF: JetLightClass:testing.TestOther
class TestOtherMore : TestOther()
// REF: TestOtherMore
// REF: TestOther