Changes to attempt to silence bcc64x
[ACE_TAO.git] / ACE / tests / Compiler_Features_15_Test.cpp
blob9f642e979a948719795f1f1487145e3c09f85bb0
1 /**
2 * This program checks if the compiler / platform supports default
3 * constructor and assignment operators
4 */
6 #include "test_config.h"
8 class A
10 public:
11 A ();
12 A (A&&) = default;
13 A& operator= (A&&) = default;
16 int
17 run_main (int, ACE_TCHAR *[])
19 ACE_START_TEST (ACE_TEXT("Compiler_Features_15_Test"));
21 ACE_DEBUG ((LM_INFO,
22 ACE_TEXT ("Defaulted move constructor and assignment operators work.\n")));
24 ACE_END_TEST;
26 return 0;