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
* c-common.c (get_priority): Add check for
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
memtemp91.C
blob
18b52a433b101eee3dce7dd035e313a6e53bc34a
1
// { dg-do assemble }
2
// regression test -
3
4
// simplified from bug report by Leon Bottou <leonb@research.att.com>
5
// by Paul Burchard <burchard@pobox.com>, Level Set Systems, Inc.
6
// Copyright (C) 1999 Free Software Foundation
7
8
struct A {
9
template <class T>
10
struct B {
11
T x;
12
};
13
template <class T>
14
struct C : B<T> {
15
C() {}
16
};
17
};
18
19