blob: 4f5965c746a30f84e415f2654eb1a006c90e6738 [file] [log] [blame]
// PR c++/114683
// { dg-do compile { target c++20 } }
// { dg-additional-options "-fmodules-ts" }
import M;
int main() {
auto y = bar::y;
// This should not be made visible.
auto z = foo::a::z; // { dg-error "not been declared" }
}