xref: /llvm-project/clang/test/SemaCUDA/alias.cu (revision 9e99a4f0db0e21b68e9aab9ad6f32f34d42eb460)
1 // RUN: %clang_cc1 -triple nvptx-unknown-cuda -fsyntax-only -fcuda-is-device -target-sdk-version=9.0 -verify %s
2 
3 // The alias attribute is not allowed in CUDA device code before 10.0.
4 extern "C" void bar();
5 __attribute__((alias("bar"))) void foo();
6 // expected-error@-1 {{CUDA older than 10.0 does not support .alias}}
7