"Make open": Fix false positive for data class inheritance #KT-27354 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-10-03 11:33:27 +09:00
committed by Mikhail Glukhikh
parent 6d73aa29e0
commit 5e7d974767
3 changed files with 12 additions and 1 deletions
@@ -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)