Last change
on this file since 2 was 2, checked in by bird, 22 years ago |
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
384 bytes
|
Line | |
---|
1 | // { dg-do compile }
|
---|
2 | // { dg-options "-ansi -pedantic-errors -Wold-style-cast" }
|
---|
3 |
|
---|
4 | // Copyright (C) 2001 Free Software Foundation, Inc.
|
---|
5 | // Contributed by Nathan Sidwell 26 Dec 2001 <nathan@codesourcery.com>
|
---|
6 |
|
---|
7 | // PR 5089. old style cast to void should be permitted (think assert)
|
---|
8 |
|
---|
9 | void foo ()
|
---|
10 | {
|
---|
11 | int i;
|
---|
12 | float f = (float)i; // { dg-warning "use of old-style cast" "" }
|
---|
13 |
|
---|
14 | (void)i;
|
---|
15 | }
|
---|
16 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.