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
testsuite: g++.dg: debug: fix test filenames
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
sfinae15.C
blob
d8b3228903023ece89f9fb15e657d7353ee32355
1
// PR c++/48531
2
// { dg-do compile { target c++11 } }
3
4
template<class T,
5
class = decltype(T())
6
>
7
char f(int);
8
9
template<class>
10
char (&f(...))[2];
11
12
static_assert(sizeof(f<int[]>(0)) != 1, "Error");