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
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
error23.C
blob
f21d8d9d07c9954836ce6c83d59a25ecca79810b
1
// PR c++/29632
2
3
struct nullptr_type {
4
5
nullptr_type ( void ) {}
6
7
template < typename T >
8
operator T* ( void ) const {
9
return ( 0 );
10
}
11
} const nullptr_ob;
12
13
int main ( void ) {
14
0 == nullptr_ob; // { dg-error "match" }
15
}
16
17