aboutsummaryrefslogtreecommitdiff
path: root/test/PCH/Inputs/cxx-method.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/PCH/Inputs/cxx-method.h')
-rw-r--r--test/PCH/Inputs/cxx-method.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/PCH/Inputs/cxx-method.h b/test/PCH/Inputs/cxx-method.h
new file mode 100644
index 000000000000..6adb8591707d
--- /dev/null
+++ b/test/PCH/Inputs/cxx-method.h
@@ -0,0 +1,6 @@
+struct S {
+ void m(int x);
+
+ operator const char*();
+ operator char*();
+};