summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/test/redundantpointerops.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins/clang/test/redundantpointerops.cxx')
-rw-r--r--compilerplugins/clang/test/redundantpointerops.cxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/compilerplugins/clang/test/redundantpointerops.cxx b/compilerplugins/clang/test/redundantpointerops.cxx
index c218c089caba..30c22b02614f 100644
--- a/compilerplugins/clang/test/redundantpointerops.cxx
+++ b/compilerplugins/clang/test/redundantpointerops.cxx
@@ -7,6 +7,8 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
+#include <memory>
+
struct Struct1 {
int x;
};
@@ -35,4 +37,12 @@ void function3(Struct1& s)
//{
// (*s).x = 1; // xxexpected-error {{'*' followed by '.', rather use '->' [loplugin:redundantpointerops]}}
//};
+
+int function5(std::unique_ptr<int> x)
+{
+ return *x.get(); // expected-error {{'*' followed by '.get()', just use '*' [loplugin:redundantpointerops]}}
+};
+
+
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */