repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
sfinae18.C
blob
ea46df0ae657e4175a18c79f278f2110382703c7
1
// PR c++/48530
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
struct DelDtor {
13
DelDtor() = default;
14
~DelDtor() = delete;
15
};
16
17
static_assert(sizeof(f<DelDtor>(0)) != 1, "Error");