Files
llvm-project/clang/test/SemaTemplate/class-template-ctor-initializer.cpp
Richard Smith 69f90dce49 PR10828: Produce a warning when a no-arguments function is declared in block
scope, when no other indication is provided that the user intended to declare a
function rather than a variable.

Remove some false positives from the existing 'parentheses disambiguated as a
function' warning by suppressing it when the declaration is marked as 'typedef'
or 'extern'.

Add a new warning group -Wvexing-parse containing both of these warnings.

The new warning is enabled by default; despite a number of false positives (and
one bug) in clang's test-suite, I have only found genuine bugs with it when
running it over a significant quantity of real C++ code.

llvm-svn: 147599
2012-01-05 04:12:21 +00:00

56 lines
980 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
template<class X> struct A {};
template<class X> struct B : A<X> {
B() : A<X>() {}
};
B<int> x;
template<class X> struct B1 : A<X> {
typedef A<X> Base;
B1() : Base() {}
};
B1<int> x1;
template<typename T> struct Tmpl { };
template<typename T> struct TmplB { };
struct TmplC : Tmpl<int> {
TmplC() :
Tmpl<int>(),
TmplB<int>() { } // expected-error {{type 'TmplB<int>' is not a direct or virtual base of 'TmplC'}}
};
struct TmplD : Tmpl<char>, TmplB<char> {
TmplD():
Tmpl<int>(), // expected-error {{type 'Tmpl<int>' is not a direct or virtual base of 'TmplD'}}
TmplB<char>() {}
};
namespace PR7259 {
class Base {
public:
Base() {}
};
template <class ParentClass>
class Derived : public ParentClass {
public:
Derived() : Base() {}
};
class Final : public Derived<Base> {
};
int
main (void)
{
Final final;
return 0;
}
}