blob: 42a80b8b38c77966f1aebc9b942f6ba1f300d55a [file] [log] [blame]
Peter Collingbourneced76712010-12-01 03:15:31 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003#include "Inputs/cuda.h"
Peter Collingbourneced76712010-12-01 03:15:31 +00004
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}