aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/local5.C
blob: 851032ab3d75979801301c78639059c1b94d1741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// { dg-do run  }
template <class INT>
class b
{
private:
  char a(int x)
  {
    union {
      int i;
      char c;
    } val;
    val.i = x;
    return val.c;
  }

public:
  b()  {
  }
};

int main() {
  b<int> n;
  return 0;
}