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

4b825dc642cb6eb9a060e54bf8d69288fbee4904cfad47cfa334b206c65f22086bcc5d63e6f70944
1
/*
2
 *   syntax error: replace an object with no superclass list 
3
 */
4
5
testObj: object
6
    propA = 'this is property A'
7
    propB = 'this is property B'
8
;
9
10
replace testObj
11
{
12
    propA = 'new property A'
13
}