[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaHLSL / BuiltIns / any-errors.hlsl
blobe42fd97b40219fb29cb53ed6e5cb1bcbb51da8b9
2 // RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel6.6-library %s -fnative-half-type -emit-llvm-only -disable-llvm-passes -verify -verify-ignore-unexpected
4 bool test_too_few_arg() {
5   return __builtin_hlsl_any();
6   // expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
9 bool test_too_many_arg(float2 p0) {
10   return __builtin_hlsl_any(p0, p0);
11   // expected-error@-1 {{too many arguments to function call, expected 1, have 2}}