brintos

brintos / llvm-project-archived public Read only

0
0
Text · 211 B · f9b515e Raw
10 lines · cpp
1// Based on C++20 10.2 example 3.2 3// RUN: %clang_cc1 -std=c++20 -emit-module-interface %s -o %t4 5export module M;6struct S;7export using T = S; // OK, exports name T denoting type S8 9// expected-no-diagnostics10