summaryrefslogtreecommitdiff
path: root/clang/test/SemaCUDA/qualifiers.cu
blob: 1346d654b8c419f54f02c089af56be571d2ffa46 (about) (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -fsyntax-only -verify %s

#include "cuda.h"

__global__ void g1(int x) {}
__global__ int g2(int x) { // expected-error {{must have void return type}}
  return 1;
}