srcanamdw_os/leavescan/test/testcases/LS11-testcases/PCT-LeaveScan-LS11-015.cpp
changeset 0 83f4b4db085c
child 2 99082257a271
equal deleted inserted replaced
-1:000000000000 0:83f4b4db085c
       
     1 //desc: test LCleanedup is used to declare a local variable of a overload member function of a common struct
       
     2 //option:
       
     3 //date:2008-8-20 13:51:31
       
     4 //author:pingorliu
       
     5 //type: CT
       
     6 
       
     7 struct temp
       
     8 {
       
     9 	private:
       
    10 	       void func(TInt x)
       
    11 	       {
       
    12 	       }
       
    13                void func()
       
    14 	       {
       
    15                 static const LCleanedupPtr<TInt> member; //check:LCleanedup,func
       
    16 	       }
       
    17 };