Test cases

- Added `oop/basic.t`
This commit is contained in:
Tristan B. Velloza Kildaire 2024-05-19 15:57:46 +02:00
parent ebefcd54a1
commit cba532eebe
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
module basic;
class Person
{
byte* name;
}
int main()
{
Person g;
Person h;
g.name = 0;
return 0;
}