mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-15 12:01:27 +01:00
+ test cpp class renaming (compiled for linux/i386 and all darwin platforms) * changed compilation instructions for obj/cpptcl1.cpp git-svn-id: trunk@15239 -
17 lines
290 B
C++
17 lines
290 B
C++
// test code for class renaming
|
|
// compile with
|
|
// gcc -fno-exceptions -c -o $OS/$PLATFORM/cpptcl2.o cpptcl2.cpp
|
|
|
|
class TestClass {
|
|
public:
|
|
static void TestProc();
|
|
};
|
|
|
|
class testclass {
|
|
public:
|
|
static void TestProc();
|
|
};
|
|
|
|
void TestClass::TestProc() {};
|
|
void testclass::TestProc() {};
|