Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
method
/
throws
/
DefaultArgs.kt
blob: eb3b0e83f53af6c0e2df77aa7fad9af6e50e8ece [
file
] [
log
] [
blame
]
package
test
class
E1
:
Exception
()
@Throws
(
E1
::
class
)
@JvmOverloads
fun one
(
a
:
Int
=
1
)
{}
class
One
@Throws
(
E1
::
class
)
constructor
(
a
:
Int
=
1
)
{
@Throws
(
E1
::
class
)
fun one
(
a
:
Int
=
1
)
{}
}