mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-23 21:45:46 -04:00

grammar requires a string-literal and not a user-defined-string-literal. The two constructs are still represented by the same TokenKind, in order to prevent a combinatorial explosion of different kinds of token. A flag on Token tracks whether a ud-suffix is present, in order to prevent clients from needing to look at the token's spelling. llvm-svn: 152098
20 lines
542 B
C++
20 lines
542 B
C++
// RUN: %clang_cc1 -E -std=c++11 -o - %s | FileCheck %s
|
|
|
|
#define id(x) x
|
|
id("s")_x // CHECK: "s" _x
|
|
id(L"s")_x // CHECK: L"s" _x
|
|
id(u8"s")_x // CHECK: u8"s" _x
|
|
id(u"s")_x // CHECK: u"s" _x
|
|
id(U"s")_x // CHECK: U"s" _x
|
|
id('s')_x // CHECK: 's' _x
|
|
id(L's')_x // CHECK: L's' _x
|
|
id(u's')_x // CHECK: u's' _x
|
|
id(U's')_x // CHECK: U's' _x
|
|
id("s"_x)_y // CHECK: "s"_x _y
|
|
id(1.0_)f // CHECK: 1.0_ f
|
|
id(1.0)_f // CHECK: 1.0 _f
|
|
id(0xface+)b_count // CHECK: 0xface+ b_count
|
|
id("s")1 // CHECK: "s"1
|
|
id("s"_x)1 // CHECK: "s"_x 1
|
|
id(1)_2_x // CHECK: 1 _2_x
|