Use override/default for RTPortableServer
[ACE_TAO.git] / ACE / tests / Compiler_Features_29_Test.cpp
blob9ff037ee2def2467a289fa0aef4713ca27090010
1 /**
2 * This program checks if the compiler doesn't have a certain bug
3 * that we encountered when testing C++11 features
4 */
6 #include "test_config.h"
8 #include <cstdint>
10 class A
12 public:
13 static constexpr char const* adapter_name = "A";
14 static constexpr float pi = 3.14150f;
17 int
18 run_main (int, ACE_TCHAR *[])
20 ACE_START_TEST (ACE_TEXT("Compiler_Features_29_Test"));
22 ACE_DEBUG ((LM_DEBUG, "Variable %C\n", A::adapter_name));
24 ACE_END_TEST;
26 return 0;