view clang/test/Sema/warn-unused-but-set-parameters.c @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +0900
parents
children c4bab56944e8
line wrap: on
line source

// RUN: %clang_cc1 -fblocks -fsyntax-only -Wunused-but-set-parameter -verify %s

int f0(int x,
       int y, // expected-warning{{parameter 'y' set but not used}}
       int z __attribute__((unused))) {
  y = 0;
  return x;
}

void f1(void) {
  (void)^(int x,
          int y, // expected-warning{{parameter 'y' set but not used}}
          int z __attribute__((unused))) {
    y = 0;
    return x;
  };
}

struct S {
  int i;
};

void f3(struct S s) { // expected-warning{{parameter 's' set but not used}}
  struct S t;
  s = t;
}