10 lines · plain
1// RUN: rm -rf %t2// RUN: mkdir -p %t3// RUN: %clang_cc1 -std=c++20 %S/Inputs/odr_using_dependent_name/X.cppm -emit-module-interface -o %t/X.pcm4// RUN: %clang_cc1 -std=c++20 -I%S/Inputs/odr_using_dependent_name -fprebuilt-module-path=%t %s -fsyntax-only -verify5// expected-no-diagnostics6module;7#include "foo.h"8export module Y;9import X;10