9 lines
67 B
Plaintext
9 lines
67 B
Plaintext
type t {
|
|
int md(int);
|
|
}
|
|
|
|
int main() {
|
|
t x = null;
|
|
x.md(3);
|
|
}
|