opnsense-src/test/FixIt/fixit-pmem.cpp

24 lines
507 B
C++
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -pedantic -fixit %s -o - | %clang_cc1 -fsyntax-only -pedantic -Werror -x c++ -
2009-11-04 10:04:32 -05:00
/* This is a test of the various code modification hints that are
provided as part of warning or extension diagnostics. All of the
warnings will be fixed by -fixit, and the resulting file should
compile cleanly with -Werror -pedantic. */
struct S {
int i;
};
int foo(int S::* ps, S s, S* p)
{
p.*ps = 1;
return s->*ps;
}
void foo1(int (S::*ps)(), S s, S* p)
{
(p.*ps)();
(s->*ps)();
}