repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
static28.C
blob
eb5ec5313e5e8135f9b8c72a939e5549bff4acd7
1
// PR c++/29518
2
3
template< bool C > int assertion_failed( int);
4
template< class >
5
struct N
6
{
7
static bool const okay = true;
8
enum {
9
t = sizeof( assertion_failed<okay>( 0))
10
};
11
};
12
int main()
13
{
14
N<int> n;
15
}