Not operator

This commit is contained in:
Valentin Kipyatkov
2015-10-27 19:12:19 +03:00
parent d289ebd874
commit fc924d1c9f
4 changed files with 15 additions and 1 deletions
@@ -0,0 +1,4 @@
// "Make A open" "true"
class A(val v: Int)
class B : A<caret>()
@@ -0,0 +1,4 @@
// "Make A open" "true"
open class A(val v: Int)
class B : A<caret>()