blob: 1d83d809f52072f27b30ef6758745797e601da8f [file] [log] [blame]
Ilya Biryukov26a35da2018-06-06 08:50:12 +00001// RUN: %clang_cc1 -std=c++17 -fmodules-ts -emit-obj -verify -o %t.pcm %s
Jan Korous67da1252018-06-06 05:16:34 +00002
3export module M;
4export {
5 union { bool a; }; // expected-error{{anonymous unions at namespace or global scope must be declared 'static'}}
6}