Home | History | Annotate | Download | only in Parser
      1 // RUN: %clang_cc1 -fsyntax-only -W -Wall -Werror -verify %s
      2 
      3 int f(int i __attribute__((__unused__)))
      4 {
      5     return 0;
      6 }
      7 int g(i)
      8     int i __attribute__((__unused__));
      9 {
     10     return 0;
     11 }
     12