brintos

brintos / llvm-project-archived public Read only

0
0
Text · 180 B · 293c1ce Raw
9 lines · plain
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