JavaTXCompilerInJavaTX/test/strucTypes/StructuralTypesSimple2.jav

18 lines
154 B
Plaintext
Raw Normal View History

2017-03-16 16:26:59 +01:00
class A {
A f1;
A f2;
2017-03-18 11:07:34 +01:00
mt1(x) { return x; }
2017-03-16 16:26:59 +01:00
2017-03-18 11:07:34 +01:00
mt2(x) { return x.feld ; }
2017-03-16 16:26:59 +01:00
mt3(a,b,c) { return a.add(b).sub(c); }
2017-03-18 11:07:34 +01:00
2017-03-16 16:26:59 +01:00
}