summaryrefslogtreecommitdiff
path: root/clang/test/Modules/Inputs/module_private_right.h
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Modules/Inputs/module_private_right.h')
-rw-r--r--clang/test/Modules/Inputs/module_private_right.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/module_private_right.h b/clang/test/Modules/Inputs/module_private_right.h
new file mode 100644
index 0000000..53efe25
--- /dev/null
+++ b/clang/test/Modules/Inputs/module_private_right.h
@@ -0,0 +1,13 @@
+__module_private__ double &f0(double);
+__module_private__ double &f0(double);
+
+__module_private__ int hidden_var;
+
+inline void test_f0_in_right() {
+ double &dr = f0(hidden_var);
+}
+
+struct VisibleStruct {
+ __module_private__ int field;
+ __module_private__ virtual void setField(int f);
+};