]> gcc.gnu.org Git - gcc.git/blame - gcc/testsuite/g++.old-deja/g++.pt/local5.C
pt.c (instantiate_decl): Tell the repository code about the clones, not the cloned...
[gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / local5.C
CommitLineData
a6475d98
JM
1template <class INT>
2class b
3{
4private:
5 char a(int x)
6 {
7 union {
8 int i;
9 char c;
10 } val;
11 val.i = x;
12 return val.c;
13 };
14
15public:
16 b() {
17 }
18};
19
20int main() {
21 b<int> n;
22 return 0;
23}
24
This page took 1.049457 seconds and 5 git commands to generate.