SymbolDatabase: fix wrong type in union test.

This commit is contained in:
Robert Reif 2017-10-15 09:45:02 -04:00
parent 352fd7a381
commit 69b75c43b4
1 changed files with 1 additions and 1 deletions

View File

@ -5259,7 +5259,7 @@ private:
" Fred(int x) : i(x) { }\n"
" Fred(float x) : f(x) { }\n"
" int i;\n"
" int f;\n"
" float f;\n"
"};");
ASSERT_EQUALS("", errout.str());