aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCUDA/qualifiers.cu
blob: 42a80b8b38c77966f1aebc9b942f6ba1f300d55a (plain) (blame)
1
2
3
4
5
6
7
8
// 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;
}