Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
annotations
/
throwsByStarWinsBuiltin.kt
blob: 1808440903ede0d6ce86ec9fe6952a5ddea4ab6c [
file
] [
log
] [
blame
]
// 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
()
}