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

// Extract from PR38614
struct C {};

C f1() {
 return C{};
}

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