view gcc/testsuite/c-c++-common/Wunused-local-typedefs.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/*  Origin PR c++/33255
    { dg-options "-Wunused-local-typedefs" }
    { dg-do compile }
*/

void
test_warn ()
{
  typedef int foo; // { dg-warning "locally defined but not used" }
}

void
test0 ()
{
    typedef int foo;
    foo var __attribute__((unused));
}

void
test1 ()
{
    typedef int foo;
    const foo *var = 0;
}

void
test2 ()
{
  typedef int foo;
  void func(foo);  
}

void
test7 (void)
{
  typedef int foo;
  int vec[1] = {sizeof (foo)};
}

void
test8 (void)
{
  typedef int foo __attribute__((used));
}