aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.benjamin/18208.C
blob: 7ec1dc090984a7c83c560390c41f1883a0001232 (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
// 981204 bkoz
// g++/18208
// Build don't link:

typedef unsigned int uint_32;

class puertorico {
public:
  void *f ();
private:
  uint_32 member;
};

void foo( )
{
  uint_32 ui;
  puertorico obj;

  // Bug using static_cast<>
  ui = static_cast<uint_32>(obj); // ERROR - // ERROR -
  
  // Bug when missing the pair of braces
  ui = (uint_32) obj.f; // ERROR - // ERROR -
}