Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
method
/
Delegation.java
blob: b757e4d4baeae7c813167e1b649ada343a26b855 [
file
] [
log
] [
blame
]
package
test
;
class
JavaClass
{
public
static
void
main
(
String
[]
args
)
{
Test
test
=
new
Test
();
test
.
foo
();
test
.
getBar
();
}
}