Added quickfix for NULLABLE_SUPERTYPE
This commit is contained in:
committed by
Andrey Breslav
parent
3293e08d97
commit
42b7b7e221
@@ -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> {}
|
||||
Reference in New Issue
Block a user