aboutsummaryrefslogtreecommitdiff
path: root/clang/test/SemaCUDA/consteval-func.cu
blob: 293c1ce85830a72b6968d87a4216b67b02e73d7e (plain)
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(); }