Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
method
/
TraitImpl.java
blob: 4ac8de0fbdbbb2966f8d40f8b9fcede2caf1410d [
file
]
package
test
;
import
java
.
util
.
ArrayList
;
abstract
class
TraitImpl
implements
Trait
{
{
Trait
.
DefaultImpls
.
simple
(
this
);
Trait
.
DefaultImpls
.
generic
(
this
,
new
ArrayList
<
String
>());
}
}