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
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
utf-dflt2.C
blob
ab18ef52fdffaadf7e90d5d1e9709c201bc4c2f7
1
// In C++0x, the u8 prefix should be parsed as separate tokens.
2
// { dg-do compile }
3
// { dg-options "-std=c++98" }
4
5
const void *s0 = u8"a"; // { dg-error "was not declared" }
6
7
#define u8 "a"
8
9
const void *s1 = u8"a";
10
11
int main () {}