blob: 83266381ae6a3c880539ca17a8ca14d46da83a15 [file] [log] [blame]
// RUN: clang -fsyntax-only -verify %s
extern char version[];
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}}
[d g:10, version];
}