JavaTXCompilerInJavaTX/test/strucTypes/StructuralTypesSimple2.jav

17 lines
156 B
Plaintext
Raw Normal View History

2017-03-16 15:26:59 +00:00
class A {
A f1;
A f2;
2017-03-22 15:18:37 +00:00
2017-03-16 15:26:59 +00:00
2017-03-19 10:41:22 +00:00
mt1(x) { return x; }
2017-03-16 15:26:59 +00:00
2017-03-22 15:18:37 +00:00
//mt2(x) { return x.feld ; }
2017-03-16 15:26:59 +00:00
mt3(a,b,c) { return a.add(b).sub(c); }
}