blob: 590638292b5e9af682ae07d4b2bb0953fb1e0cc1 [file] [log] [blame]
Richard Smithbecb92d2017-10-10 22:33:17 +00001// RUN: %clang_cc1 -std=c++17 -fmodules-ts %s
2
3typedef struct {
4 int c;
5 union {
6 int n;
7 char c[4];
8 } v;
9} mbstate;
10
11export module M;
12export using ::mbstate;