mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-29 18:51:05 -05:00
7fc2a83fe6
C++ module-using TUs cannot participate in unity builds. Add a test case for this situation.
11 lines
115 B
C++
11 lines
115 B
C++
module;
|
|
|
|
#include "unity.h"
|
|
|
|
export module importable;
|
|
|
|
export int from_import()
|
|
{
|
|
return unity1() + unity2();
|
|
}
|