8sa1-gcc/gcc/testsuite/gcc.dg/unused-3.c
Catherine Moore c0916fa0b5 New test.
From-SVN: r33767
2000-05-08 10:55:42 -04:00

11 lines
268 B
C

/* Copyright (C) 2000 Free Software Foundation. */
/* { dg-do compile } */
/* { dg-options "-Wunused" } */
typedef short unused_type __attribute__ ((unused));
main ()
{
short x; /* { dg-warning "unused variable" "unused variable warning" } */
unused_type y;
}