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

#include "partitions_export.h"

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