diff options
Diffstat (limited to 'test/SemaCXX/address-of-temporary.cpp')
-rw-r--r-- | test/SemaCXX/address-of-temporary.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/SemaCXX/address-of-temporary.cpp b/test/SemaCXX/address-of-temporary.cpp index decdc95..eb5dee5 100644 --- a/test/SemaCXX/address-of-temporary.cpp +++ b/test/SemaCXX/address-of-temporary.cpp @@ -5,8 +5,8 @@ struct X { X(int, int); }; -void *f0() { return &X(); } // expected-warning{{taking the address of a temporary object}} -void *f1() { return &X(1); } // expected-warning{{taking the address of a temporary object}} -void *f2() { return &X(1, 2); } // expected-warning{{taking the address of a temporary object}} -void *f3() { return &(X)1; } // expected-warning{{taking the address of a temporary object}} +void f0() { (void)&X(); } // expected-warning{{taking the address of a temporary object}} +void f1() { (void)&X(1); } // expected-warning{{taking the address of a temporary object}} +void f2() { (void)&X(1, 2); } // expected-warning{{taking the address of a temporary object}} +void f3() { (void)&(X)1; } // expected-warning{{taking the address of a temporary object}} |