aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb116.C
blob: 63f5e79c062003696c70b6c5f70fd7f9d45255a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
}