Files
wren/test/language/class/new.wren
T
Bob Nystrom 64eccdd9be Reorganize tests and benchmark scripts.
Mainly to get rid of one top level directory. But this will
also be useful when there are tests of the embedding API.
2015-03-14 12:45:56 -07:00

7 lines
130 B
Plaintext

class Foo {}
var foo = new Foo
IO.print(foo is Foo) // expect: true
// TODO: Test precedence and grammar of what follows "new".