summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CXXModules/examples/scan_properties/module.cxx
blob: ad1e04dece792ed66981463c56890c22a90ed005 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef CMAKE_SCANNED_THIS_SOURCE
#  error "This file should have been scanned"
#endif

export module M;

export int from_module()
{
  return 0;
}