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