close Warning: Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.

Ticket #737: ticket_9.NewBugs_Example.tol

File ticket_9.NewBugs_Example.tol, 246 bytes (added by pgea@…, 16 years ago)
Line 
1
2Class ClaseA {
3  Real a
4};
5
6Class ClaseB {
7  ClaseA objA;
8  ClaseA Damelo(Real void){ objA }
9};
10
11ClaseB ejB = [[ ClaseA objA = [[Real a = 2]] ]];
12
13// Da error:
14ClaseA ejB::Damelo(?);
15
16// No da error:
17NameBlock ejB::Damelo(?);
18