blob: 40490ea681faf7112325f2b5fcdd9f11486a1842 [file] [log] [blame]
Douglas Gregore5a54b62011-08-30 20:49:19 +00001// RUN: %clang_cc1 -x c++ -emit-pch %S/Inputs/cxx-method.h -o %t
2// RUN: %clang_cc1 -include-pch %t -verify %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00003// expected-no-diagnostics
Argyrios Kyrtzidis9bedef62009-07-14 03:18:53 +00004
5void S::m(int x) { }
Douglas Gregore5a54b62011-08-30 20:49:19 +00006
7S::operator char *() { return 0; }
8
9S::operator const char *() { return 0; }