blob: 1346d654b8c419f54f02c089af56be571d2ffa46 [file] [log] [blame]
Peter Collingbourneced76712010-12-01 03:15:31 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3#include "cuda.h"
4
5__global__ void g1(int x) {}
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00006__global__ int g2(int x) { // expected-error {{must have void return type}}
7 return 1;
8}