summaryrefslogtreecommitdiffstats
path: root/test/SemaOpenCLCXX/address-space-of-this.cl
blob: 7ae3aa63f40707cbe535425f45c704938ba0dfe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %clang_cc1 %s -triple spir-unknown-unknown -cl-std=c++ -pedantic -verify -fsyntax-only
// expected-no-diagnostics

// Extract from PR38614
struct C {};

C f1() {
 return C{};
}

C f2(){
    C c;
    return c;
}