Fix syntax in test code example

This commit is contained in:
amai2012 2019-08-26 20:45:14 +02:00
parent 2b41297bff
commit 1538248922
1 changed files with 1 additions and 1 deletions

View File

@ -4104,7 +4104,7 @@ private:
"double b() {\n"
" A c;\n"
" c.x = 42;\n"
" return c->x;\n"
" return c.x;\n"
"}\n");
ASSERT_EQUALS("", errout.str());