repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add __builtion_unreachable to vector::size(), vector::capacity()
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1y
/
udlit-char-template.C
blob
6b7b5ecec6fffcefd72659076bce5a3fe76c37ca
1
// { dg-do compile { target c++14 } }
2
// { dg-options -w }
3
4
template<typename CharT, CharT... String>
5
int
6
operator"" _script()
7
{ return 42; }
8
9
int i = "hi!"_script;
10
int i8 = u8"hi!"_script;
11
int iw = L"hi!"_script;
12
int i16 = u"hi!"_script;
13
int i32 = U"hi!"_script;