Changeset 3952 for trunk/ProjectFortress/not_working_compiler_tests
- Timestamp:
- 07/14/09 14:26:14 (4 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/ProjectFortress/not_working_compiler_tests/FieldAccess.fss
r3936 r3952 26 26 trait S extends {T,U} end 27 27 28 object O(a:String) extends S end; 28 object O(a:String) extends S 29 val():String = a 30 end; 31 29 32 object Q(b:String, c:String) extends U end; 30 33 31 34 (* Field ref not yet implemented, sigh. *) 32 f(o:O):() = jPrintln(o.a)35 f(o:O):() = jPrintln(o.a) 33 36 f(o:Z):() = jPrintln("Hi!") 34 37

