bolt/deps/llvm-18.1.8/clang/test/Modules/odr_using_dependent_name.cppm

10 lines
365 B
Text
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: rm -rf %t
// RUN: mkdir -p %t
// RUN: %clang_cc1 -std=c++20 %S/Inputs/odr_using_dependent_name/X.cppm -emit-module-interface -o %t/X.pcm
// RUN: %clang_cc1 -std=c++20 -I%S/Inputs/odr_using_dependent_name -fprebuilt-module-path=%t %s -emit-module-interface -fsyntax-only -verify
// expected-no-diagnostics
module;
#include "foo.h"
export module Y;
import X;