xref: /aosp_15_r20/external/clang/test/SemaCUDA/pr27778.cu (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -fsyntax-only %s
2 
3 #include "Inputs/cuda.h"
4 
5 const int constint = 512;
__launch_bounds__(constint)6 __launch_bounds__(constint) void TestConstInt(void) {}
7