racket/collects/honu/examples/mdcall-test.honu
2005-05-27 18:56:37 +00:00

9 lines
67 B
Plaintext

type t {
int md(int);
}
int main() {
t x = null;
x.md(3);
}