xref: /llvm-project/clang/test/SemaHLSL/BitInt128.hlsl (revision 464926ef4484e4cb2d410fd2e959a296d7b8d58e)
1// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.3-library -x hlsl -ast-dump -o - %s -verify
2
3// expected-error@+1 {{_BitInt is not supported on this target}}
4_BitInt(128) i128;
5
6// expected-error@+1 {{_BitInt is not supported on this target}}
7unsigned _BitInt(128) u128;
8