changeset 0 | 83f4b4db085c |
child 18 | 99082257a271 |
-1:000000000000 | 0:83f4b4db085c |
---|---|
1 //desc:test leave function call in member function definition out of a class for LS2 |
|
2 //option: |
|
3 //date:2008-8-12 15:58:1 |
|
4 //author:pingorliu |
|
5 //type: CT |
|
6 class CC |
|
7 { |
|
8 void funcL(); |
|
9 }; |
|
10 |
|
11 void CC::funcL() |
|
12 {//check:-funcL,-leavers |
|
13 |
|
14 CL::fooL(); |
|
15 } |
|
16 |