"Make open": Fix false positive for data class inheritance #KT-27354 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
6d73aa29e0
commit
5e7d974767
@@ -0,0 +1,6 @@
|
||||
// "Make 'A' open" "false"
|
||||
// ERROR: This type is final, so it cannot be inherited from
|
||||
// ACTION: Add names to call arguments
|
||||
// ACTION: Do not show hints for current method
|
||||
data class A(val x: Int)
|
||||
class B: A<caret>(42)
|
||||
Reference in New Issue
Block a user