Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
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
();
}
}