Merge reload-branch up to revision 101000
[official-gcc.git] / gcc / testsuite / g++.dg / parse / builtin1.C
blob3b826bd866a52382567ce7bab4e6fefcf68e04f2
1 namespace std {
2 class Base {};
5 struct Derived : public std::Base {
6   operator const char*() const;
7   operator bool(void) const;
8 };
10 void log(const char* str);
12 void nothing()
14   Derived temp;
15   log(temp);