blob: 99e904013f15725cdd4c12c4a87f767281949e53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// PR c++/11929
// Bug: We were complaining about the call to va_start because o is of
// non-POD type.
struct s {
s(int);
};
void test(s o, ...) {
__builtin_va_list varg;
__builtin_va_start(varg, o);
}
|