Files
kotlin-fork/compiler/testData/diagnostics/tests/exceptions/keywordsInsteadOfIdentifiers.kt
T
2023-11-09 12:21:43 +01:00

9 lines
104 B
Kotlin
Vendored

// FIR_IDENTICAL
// ISSUE: KT-57529
fun <<!SYNTAX!>break<!>> foo() {}
fun test(){
foo<String>()
}