Clang Project

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