Ignore:
Timestamp:
Jun 6, 2003, 11:10:30 PM (22 years ago)
Author:
bird
Message:

More testing...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/testcase/456/simplecpp.cpp

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r301 r302  
     1#define USE_INLINE
    12class foo
    23{
     
    78    {
    89        ch = 'k';
     10        int ch2 = 1;
     11        ch += ch2;
     12        int ch3 = 1;
     13        ch += ch3;
     14        #if 1
     15        if (ch == 123)
     16        {
     17            int ch4 = 23;
     18            ch -= ch4;
     19        }
     20        #endif
    921    }
    1022#else
     
    1729{
    1830    ch = 'k';
     31#if 1
     32    int ch2 = 1;
     33    ch += ch2;
     34    int ch3 = 1;
     35    ch += ch3;
     36    #if 0
     37    if (ch == 123)
     38    {
     39        int ch4 = 23;
     40        ch -= ch4;
     41    }
     42    #endif
     43#endif
    1944}
    2045#endif
Note: See TracChangeset for help on using the changeset viewer.