Home | History | Annotate | Download | only in SemaCXX
      1 // RUN: %clang_cc1 -fsyntax-only -Wunused-parameter -Wunused -verify %s
      2 
      3 struct S {
      4   void m(int x, int y) {
      5     int z;
      6     #pragma unused(x,y,z)
      7   }
      8 };
      9