2015-07-10 16:18:22 +00:00
|
|
|
class Foo {
|
2015-07-21 14:24:53 +00:00
|
|
|
construct new() {
|
2015-09-15 14:46:09 +00:00
|
|
|
System.print("ok")
|
2015-07-10 16:18:22 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var foo = Foo.new() // expect: ok
|
|
|
|
|
foo.new() // expect runtime error: Foo does not implement 'new()'.
|