[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / test / CXX / class.derived / p2.cpp
blob7ef53d36ab7b2e882fcc781ec50b7e08a68cf96b
1 // RUN: %clang_cc1 %s -fsyntax-only -verify
3 // "During the lookup for a base class name, non-type names are ignored"
4 namespace PR5840 {
5 struct Base {};
6 int Base = 10;
7 struct Derived : Base {};