summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/dependency_flag_update/src/main.cpp
blob: 809536065207c9b414ec49de5ade85ddd1eacf07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#if defined(FOO)
import foo;
using namespace foo;
#else
import bar;
using namespace bar;
#endif

int main() {
  hello();
  return 0;
}