aboutsummaryrefslogtreecommitdiff
path: root/test/Import/struct-in-namespace/Inputs/N1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/Import/struct-in-namespace/Inputs/N1.cpp')
-rw-r--r--test/Import/struct-in-namespace/Inputs/N1.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Import/struct-in-namespace/Inputs/N1.cpp b/test/Import/struct-in-namespace/Inputs/N1.cpp
new file mode 100644
index 000000000000..ddb67a516213
--- /dev/null
+++ b/test/Import/struct-in-namespace/Inputs/N1.cpp
@@ -0,0 +1,11 @@
+namespace N {
+ struct S {
+ int a;
+ };
+}
+
+namespace N {
+ struct T {
+ int b;
+ };
+}