Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
annotations
/
throwsByStarWinsBuiltin.kt
blob: 1808440903ede0d6ce86ec9fe6952a5ddea4ab6c [
file
]
// FIR_IDENTICAL
// WITH_STDLIB
// ISSUE: KT-52407
// FILE: x.kt
package
x
class
Throws
{
fun test
()
{}
}
// FILE: main.kt
import
x
.*
fun main
()
{
Throws
().
test
()
}