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

// Build don't link:

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

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

};

codes::codes (int ptr)
{
}