1 2 3 4 5 6 7 8
// RUN: %clang_cc1 -std=c++20 -fsyntax-only -verify %s // expected-no-diagnostics #include "Inputs/cuda.h" __device__ consteval int f() { return 0; } int main() { return f(); }