OSDN Git Service

* g++.old-deja/g++.other/init5.C: Remove xfail for powerpc-linux.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / signed.C
1 // { dg-do assemble  }
2
3 // Copyright (C) 1999 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 24 Mar 1999 <nathan@acm.org>
5
6 // Determine that function style casts are groked
7
8 void fn()
9 {
10   +char(5);
11   +short(5);
12   +int(5);
13   +long(5);
14   +signed(5);
15   +unsigned(5);
16 }