aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/modules/using-16_a.C
blob: 25d8bca5d1c98212acd409d3b881b11649668a26 (plain)
1
2
3
4
5
6
7
8
9
10
11
// { dg-additional-options "-fmodules-ts" }
// { dg-module-cmi M:S }

export module M:S;

namespace foo {
  // propagate hidden from partitions
  export struct S {
    friend void f(S);
  };
};