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