summaryrefslogtreecommitdiff
path: root/test/modularize/ProblemsNamespace.modularize
blob: d4bc3535139ab4dc73b205cde37c1db0e1707198 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# RUN: not modularize %s -x c++ 2>&1 | FileCheck %s

Inputs/IncludeInNamespace.h

# CHECK: {{.*}}{{[/\\]}}Inputs{{[/\\]}}IncludeInNamespace.h:2:3:
# CHECK-NEXT:   #include "Empty.h"
# CHECK-NEXT:   ^
# CHECK-NEXT: error: Include directive within namespace MyNamespace {}.
# CHECK-NEXT: {{.*}}{{[/\\]}}Inputs{{[/\\]}}IncludeInNamespace.h:1:1:
# CHECK-NEXT: namespace MyNamespace {
# CHECK-NEXT: ^
# CHECK-NEXT: The "namespace MyNamespace {}" block is here.