KT-3525 Duplicate inner class name not detected

#KT-3525 Fixed
This commit is contained in:
Nikolay Krasko
2013-04-18 20:05:50 +04:00
parent 37f25f2ee1
commit 5df85f6100
3 changed files with 20 additions and 1 deletions
@@ -0,0 +1,8 @@
// KT-3525
object B {
class <!REDECLARATION!>C<!>
class <!REDECLARATION!>C<!>
val <!REDECLARATION!>a<!> : Int = 1
val <!REDECLARATION!>a<!> : Int = 1
}