Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
aa5987fd3dbfa6d7896d481b336c9f49e48b9179
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
method
/
throws
/
Delegation.java
blob: 781e39ba099fd86dfedc4d282b6b780da4c819df [
file
] [
log
] [
blame
]
package
test
;
class
JavaClass
{
void
testMethod
()
{
Test
test
=
new
Test
();
test
.
none
();
test
.
one
();
test
.
two
();
}
}