Merge "diagnostic with Java 8" tests with general diagnostic tests
This commit is contained in:
Vendored
+13
@@ -0,0 +1,13 @@
|
||||
// !DIAGNOSTICS: -UNUSED_PARAMETER -PLATFORM_CLASS_MAPPED_TO_KOTLIN
|
||||
|
||||
interface IBase : Map<String, String>
|
||||
|
||||
interface TestDerivedInterfaceHiding : IBase {
|
||||
fun replace(key: String, value: String): String?
|
||||
}
|
||||
|
||||
interface TestDerivedInterfaceDefault : IBase {
|
||||
fun replace(key: String, value: String): String? = TODO()
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user