blob: 10da93f614feaa7b8189ba8412f30203118be07d [file] [log] [blame]
Dean Michael Berris7456a282017-06-16 03:22:09 +00001// RUN: %clang_cc1 %s -verify -fsyntax-only -std=c++11 -x c++
2
3class Class {
4 [[clang::xray_always_instrument, clang::xray_log_args(1)]] void Method();
5 [[clang::xray_log_args(-1)]] void Invalid(); // expected-error {{'xray_log_args' attribute parameter 1 is out of bounds}}
6 [[clang::xray_log_args("invalid")]] void InvalidStringArg(); // expected-error {{'xray_log_args'}}
7};