mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-13 08:00:22 -04:00
9 lines
190 B
Plaintext
9 lines
190 B
Plaintext
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
#include "Inputs/cuda.h"
|
|
|
|
__global__ void g1(int x) {}
|
|
__global__ int g2(int x) { // expected-error {{must have void return type}}
|
|
return 1;
|
|
}
|