Added quickfix for NULLABLE_SUPERTYPE

This commit is contained in:
Kevin F. Chen
2013-02-07 13:17:33 -05:00
committed by Andrey Breslav
parent 3293e08d97
commit 42b7b7e221
8 changed files with 38 additions and 6 deletions
@@ -0,0 +1,3 @@
// "Remove '?'" "true"
open class Foo() {}
class Bar() : Foo<caret>() {}
@@ -0,0 +1,3 @@
// "Remove '?'" "true"
trait Foo {}
class Bar : Foo<caret> {}
@@ -0,0 +1,3 @@
// "Remove '?'" "true"
open class Foo() {}
class Bar() : Foo?<caret>() {}
@@ -0,0 +1,3 @@
// "Remove '?'" "true"
trait Foo {}
class Bar : Foo?<caret> {}