13 lines
113 B
Plaintext
13 lines
113 B
Plaintext
type t {
|
|
int x;
|
|
}
|
|
|
|
class c(int x) : t impl t {
|
|
int y = x;
|
|
export t : y as x;
|
|
}
|
|
|
|
t main() {
|
|
new c:t();
|
|
}
|