changeset 0 | 83f4b4db085c |
child 18 | 99082257a271 |
-1:000000000000 | 0:83f4b4db085c |
---|---|
1 //desc:test operator function defined out of class of a Lclass for LS2 |
|
2 //option: |
|
3 //date:2008-8-12 15:58:1 |
|
4 //author:pingorliu |
|
5 //type: CT |
|
6 |
|
7 class Ltemp |
|
8 { |
|
9 TInt operator+(TInt); |
|
10 }; |
|
11 |
|
12 TInt Ltemp::operator+(TInt) |
|
13 {//check:contain,leaver |
|
14 foo(); |
|
15 |
|
16 } |
|
17 |