summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/mangle1.C
blob: bcb1c87c64c0993a09b18650c350bb57562e1cf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// { dg-do assemble  }
// Bug: numeric_outputed_need_bar is not cleared properly, adding random '_'s
// to mangled names.


template <int seed_length>
class rand1
{
public:
    rand1 ();
};

class codes
{
public:
    rand1<32> * randgen;
    codes (int ptr);

};

codes::codes (int ptr)
{
}