1*67e74705SXin Li // RUN: %clang_cc1 %s -verify -fsyntax-only 2*67e74705SXin Li 3*67e74705SXin Li int a __attribute__((noduplicate)); // expected-warning {{'noduplicate' attribute only applies to functions}} 4*67e74705SXin Li 5*67e74705SXin Li void t1() __attribute__((noduplicate)); 6*67e74705SXin Li 7*67e74705SXin Li void t2() __attribute__((noduplicate(2))); // expected-error {{'noduplicate' attribute takes no arguments}} 8*67e74705SXin Li 9