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
* arm.md (stack_tie): New insn. Use an idiom that the alias code
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.robertl
/
eb84.C
blob
dce51d86d52b53a91a2ce8cf0637bca98f45bba8
1
// Error: Internal Compiler error on GCC 2.7.2.3 & EGCS 1998/05/23 snapshot.
2
3
class A {
4
public:
5
enum { ONE, TWO, THREE };
6
};
7
8
template <const unsigned c1,const unsigned c2,const unsigned c3>
9
void f() {
10
11
}
12
13
int
14
main()
15
{
16
f<A::ONE,A::TWO,A::THREE>();
17
}