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
ipa-cp: Perform operations in the appropriate types (PR 118097)
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
error33.C
blob
f71496d177d4c6aa290d28beca26887940537a6b
1
// PR c++/24791
2
3
template<int> struct A
4
{
5
static int i;
6
A() { ++i; }
7
};
8
9
template<int> int A<0>::i(0); // { dg-error "template" "error" }
10
// { dg-message "note" "note" { target *-*-* } .-1 }
11
12
A<0> a;