Files
clang-p2996/clang/test/Modules/pr58532.cppm
Chuanqi Xu d2639ffff2 [NFC] [C++20] [Modules] Add test for #pragma once
Close https://github.com/llvm/llvm-project/issues/38554
Close https://github.com/llvm/llvm-project/issues/58532

It looks like we can workaround the '#pragma once' problem automatically
after we force the lazily loading for named modules. Add a test to show
this.
2023-03-20 11:37:09 +08:00

35 lines
793 B
C++

// RUN: rm -rf %t
// RUN: mkdir %t
// RUN: split-file %s %t
//
// RUN: %clang_cc1 -std=c++20 %t/interface.cppm -emit-module-interface \
// RUN: -o %t/m.pcm
// RUN: %clang_cc1 -std=c++20 %t/implementation.cpp -fmodule-file=m=%t/m.pcm \
// RUN: -fsyntax-only -verify
//--- invisible.h
#pragma once // This breaks things.
const int kInvisibleSymbol = 0;
struct invisible_struct
{};
#define INVISIBLE_DEFINE
//--- visible.h
#include "invisible.h"
const int kSadlyUndeclaredSymbol = kInvisibleSymbol;
using unfortunately_still_invisible_struct = invisible_struct;
#ifndef INVISIBLE_DEFINE
# error "Still not defined."
#endif
//--- interface.cppm
module;
#include "visible.h"
export module m;
//--- implementation.cpp
// expected-no-diagnostics
module;
#include "visible.h"
module m;