mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-08 07:10:12 -05:00
52e82dbb23
Not in the same executable (as that is IFNDR), but in the same project. This tests to make sure that there's not some project-wide cache that gets confused.
12 lines
159 B
C++
12 lines
159 B
C++
module;
|
|
|
|
#include <iostream>
|
|
|
|
export module duplicate;
|
|
|
|
export int from_import()
|
|
{
|
|
std::cerr << "From duplicate #" << NDUPLICATE << std::endl;
|
|
return 0;
|
|
}
|