Changeset 301


Ignore:
Timestamp:
Jun 5, 2003, 4:54:28 PM (22 years ago)
Author:
bird
Message:

playing around to see what does it...

File:
1 edited

Legend:

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

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r300 r301  
    11class foo
    22{
     3    char ch;
    34public:
     5#ifdef USE_INLINE
    46    foo()
    5     { }
     7    {
     8        ch = 'k';
     9    }
     10#else
     11    foo();
     12#endif
    613};
     14
     15#ifndef USE_INLINE
     16foo::foo()
     17{
     18    ch = 'k';
     19}
     20#endif
    721
    822
Note: See TracChangeset for help on using the changeset viewer.