view clang/test/SemaHLSL/group_shared_202x.hlsl @ 266:00f31e85ec16 default tip

Added tag current for changeset 31d058e83c98
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 14 Oct 2023 10:13:55 +0900
parents c4bab56944e8
children
line wrap: on
line source

// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.3-library -x hlsl -std=hlsl202x  -o - -fsyntax-only %s -verify

// expected-error@+1 {{return type cannot be qualified with address space}}
auto func() -> groupshared void;

// expected-error@+1 {{parameter may not be qualified with an address space}}
auto func(float groupshared) -> void;

// expected-error@+1 {{parameter may not be qualified with an address space}}
auto l = [](groupshared float ) {};

// expected-error@+1 {{return type cannot be qualified with address space}}
auto l2 = []() -> groupshared void {};

struct S {
// expected-error@+1 {{return type cannot be qualified with address space}}
operator groupshared int() const;

};