cfad47cfa3/t3compiler/tads3/test/data/callpropvar.t

4b825dc642cb6eb9a060e54bf8d69288fbee4904cfad47cfa334b206c65f22086bcc5d63e6f70944
1
#include "tads.h"
2
#include "t3.h"
3
4
main(args)
5
{
6
    local x = &prop1;
7
    local y = testObj;
8
9
    (y).(x)(123, 456);
10
}
11
12
testObj: object
13
    prop1(a, b) { "this is prop1: a = <<a>>, b = <<b>>\n"; }
14
;
15