summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/CXXModules/examples/partitions/importable.cxx
blob: d0ac2f47b59551791a9f6db5208160e0a4e30835 (plain)
1
2
3
4
5
6
7
8
9
export module importable;
export import : partition;

#include "partitions_export.h"

export PARTITIONS_EXPORT int from_import()
{
  return from_partition();
}