[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaHLSL / BuiltIns / sign-errors.hlsl
blobb67725fc77e52ec9ba8655f95c5ac8d8ee7c4d4c
1 // 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
3 bool test_too_few_arg() {
4   return __builtin_hlsl_elementwise_sign();
5   // expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
8 bool2 test_too_many_arg(float2 p0) {
9   return __builtin_hlsl_elementwise_sign(p0, p0);
10   // expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
13 bool builtin_bool_to_float_type_promotion(bool p1) {
14   return __builtin_hlsl_elementwise_sign(p1);
15   // expected-error@-1 {passing 'bool' to parameter of incompatible type 'float'}}