mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
12 lines
211 B
Java
Vendored
12 lines
211 B
Java
Vendored
package test;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
abstract class TraitImpl implements Trait {
|
|
{
|
|
Trait.DefaultImpls.simple(this);
|
|
|
|
Trait.DefaultImpls.generic(this, new ArrayList<String>());
|
|
}
|
|
}
|