blob: fc1c4c2cea5ec2b5d531712f7f5c7c77b39320c2 [file] [log] [blame]
Jan Korousfda9dae2018-01-13 15:24:16 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2// expected-no-diagnostics
3
4template <typename T> class Foo {
5 struct Base : T {};
6
7 // Test that this code no longer causes a crash in Sema. rdar://23291875
8 struct Derived : Base, T {};
9};