blob: 7ef53d36ab7b2e882fcc781ec50b7e08a68cf96b [file] [log] [blame]
Eli Friedman0f0615b2009-12-21 01:42:38 +00001// RUN: %clang_cc1 %s -fsyntax-only -verify
2
3// "During the lookup for a base class name, non-type names are ignored"
4namespace PR5840 {
5 struct Base {};
6 int Base = 10;
7 struct Derived : Base {};
8}