blob: 1f6f94781251a06b4761ee8f52814889e31c1394 [file] [log] [blame]
Richard Smith9fcce652012-03-07 08:35:16 +00001// RUN: %clang_cc1 -std=c++11 -ast-print %s | FileCheck %s
2
3// FIXME: Print the trailing-return-type properly.
4// CHECK: decltype(nullptr) operator "" _foo(const char *p, decltype(sizeof(int)));
5auto operator"" _foo(const char *p, decltype(sizeof(int))) -> decltype(nullptr);
6
7// CHECK: const char *p1 = "bar1"_foo;
8const char *p1 = "bar1"_foo;
9// CHECK: const char *p2 = "bar2"_foo;
10const char *p2 = R"x(bar2)x"_foo;
11// CHECK: const char *p3 = u8"bar3"_foo;
12const char *p3 = u8"bar3"_foo;