Allopen: Handle allopen annotations on classes (KT-12149)

This commit is contained in:
Yan Zhulanow
2016-09-29 13:56:14 +03:00
committed by Yan Zhulanow
parent 58f408e173
commit f57df272ac
33 changed files with 815 additions and 36 deletions
+14
View File
@@ -0,0 +1,14 @@
annotation class AllOpen
@AllOpen
sealed class Sealed {
class C1 : Sealed() {}
class C2 : Sealed() {}
}
sealed class Sealed2 {
@AllOpen
class C1 : Sealed2() {}
class C2 : Sealed2() {}
}