Skip to content
Snippets Groups Projects
Commit 5ff6bbd4 authored by Robert Loehning's avatar Robert Loehning
Browse files

Squish: Test auto variables in tst_memberoperator


Change-Id: I7b5bbdcfbd685abb5a716cc237276761065eb962
Reviewed-by: default avatarChristian Stenger <christian.stenger@theqtcompany.com>
parent b0290459
No related branches found
No related tags found
No related merge requests found
...@@ -22,3 +22,7 @@ ...@@ -22,3 +22,7 @@
"<QVector>" "QVector<QCoreApplication> vec;" "vec[0]" "." "vec[0]." "<QVector>" "QVector<QCoreApplication> vec;" "vec[0]" "." "vec[0]."
"<QVector>" "QVector<QCoreApplication *> vec;" "vec[0]" "." "vec[0]->" "<QVector>" "QVector<QCoreApplication *> vec;" "vec[0]" "." "vec[0]->"
"" "struct Foo { int foo; }; Foo *baz;" "baz" "." "baz->" "" "struct Foo { int foo; }; Foo *baz;" "baz" "." "baz->"
"<QString>" "auto s = QString();" "s" "." "s."
"<QString>" "auto *s = QString();" "s" "." "s."
"<QString>" "auto s = new QString();" "s" "." "s->"
"<QString>" "auto *s = new QString();" "s" "." "s->"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment