1 // RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited -triple x86_64-apple-darwin %s -o - | FileCheck %s
5 template <class T
> class foo
: public base
{
6 void operator=(const foo r
) { }
9 class bar
: public foo
<void> { };
12 // For now check that it simply doesn't crash.