add another test that we just didn't have anywhere else yet

This commit is contained in:
Wolfgang Bumiller 2015-01-22 11:45:23 +01:00
parent 6149f6a1d0
commit 49f4fedecf
2 changed files with 19 additions and 0 deletions

13
tests/fieldfuncs.qc Normal file
View file

@ -0,0 +1,13 @@
.float field;
.float getfield() {
return field;
}
void() main = {
entity e = spawn();
e.field = 42;
print(ftos(e.(getfield())), "\n");
.float memptr = getfield();
print(ftos(e.memptr), "\n");
}

6
tests/fieldfuncs.tmpl Normal file
View file

@ -0,0 +1,6 @@
I: fieldfuncs.qc
D: test fields with functions
T: -compile
C: -std=fte
M: 42
M: 42