forked from OSchip/llvm-project
Add test coverage for invalid conversion functions with default args.
This currently leaks memory (PR19689) but wasn't covered by tests, so LSan couldn't find it. llvm-svn: 208477
This commit is contained in:
parent
8cff45aa20
commit
cf596d8fa8
|
@ -26,6 +26,9 @@ class Y {
|
|||
public:
|
||||
void operator bool(int, ...) const; // expected-error{{conversion function cannot have a return type}} \
|
||||
// expected-error{{conversion function cannot have any parameters}}
|
||||
|
||||
operator bool(int a = 4) const; // expected-error{{conversion function cannot have any parameters}}
|
||||
|
||||
|
||||
operator float(...) const; // expected-error{{conversion function cannot be variadic}}
|
||||
|
||||
|
|
Loading…
Reference in New Issue