From: Jason Merrill Date: Thu, 25 Mar 1999 03:50:54 +0000 (-0500) Subject: new X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fe1e8929ab1a5f978944272f389d7bb3bbe3dac0;p=gcc.git new From-SVN: r25971 --- diff --git a/gcc/testsuite/g++.old-deja/g++.other/signed.C b/gcc/testsuite/g++.old-deja/g++.other/signed.C new file mode 100644 index 00000000000..3bdce03a3e4 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.other/signed.C @@ -0,0 +1,16 @@ +// Build don't link: + +// Copyright (C) 1999 Free Software Foundation, Inc. +// Contributed by Nathan Sidwell 24 Mar 1999 + +// Determine that function style casts are groked + +void fn() +{ + +char(5); + +short(5); + +int(5); + +long(5); + +signed(5); + +unsigned(5); +}