summaryrefslogtreecommitdiff
path: root/ACE/tests/Compiler_Features_27_Test.cpp
blob: 36781025044d9b852c4c9a0ece0e45d44603d5d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
 * This program checks if the compiler doesn't have a certain bug
 * that we encountered when testing C++11 features
 */

#include "test_config.h"

#include <string>

class Foo
{
public:
  Foo () = default;
};

void operator <<= (Foo&, std::string &&)
{
}

int
run_main (int, ACE_TCHAR *[])
{
  ACE_START_TEST (ACE_TEXT("Compiler_Features_27_Test"));

  // Visual Studio 2015 has a small issue with this construct
#if !(defined (_MSC_VER) && (_MSC_VER < 1910))
  Foo any;
  any <<= std::move("abc");
#endif

  ACE_END_TEST;

  return 0;
}