blob: ef04d03bb78fab866b43574d90b68a1b1f6b1892 [file] [log] [blame]
Eric Christophera765b9f2012-02-13 15:04:15 +00001// RUN: %clang_cc1 -emit-llvm -g -triple x86_64-apple-darwin %s -o - | FileCheck %s
2
3class base { };
4
5template <class T> class foo : public base {
6 void operator=(const foo r) { }
7};
8
9class bar : public foo<void> { };
10bar filters;
11
12// For now check that it simply doesn't crash.
13// CHECK: {{.*}}