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