You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
320 B
14 lines
320 B
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited -triple x86_64-apple-darwin %s -o - | FileCheck %s
|
|
|
|
class base { };
|
|
|
|
template <class T> class foo : public base {
|
|
void operator=(const foo r) { }
|
|
};
|
|
|
|
class bar : public foo<void> { };
|
|
bar filters;
|
|
|
|
// For now check that it simply doesn't crash.
|
|
// CHECK: {{.*}}
|