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
Update ChangeLog and version files for release
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
error36.C
blob
b16b976e3822420057f53bf44364552a3854d961
1
// PR c++/37719.C
2
3
template <typename T>
4
class foo {
5
void bar() throw(int); // { dg-error "throw \\(int\\)" }
6
};
7
8
template <>
9
void foo<int>::bar() throw(float) {} // { dg-error "throw \\(float\\)" }