blob: 3431dea9e55be4db8cdf95aa5d56a40c6fe6a4da [file] [log] [blame]
// RUN: clang -fsyntax-only -verify %s
class C {
public:
C(int);
};
@interface D
- (void)g:(int)a, ...;
@end
void t1(D *d)
{
C c(10);
[d g:10, c]; // expected-warning{{cannot pass object of non-POD type 'class C' through variadic method; call will abort at runtime}}
}