Features: Use variable in cxx_inheriting_constructors test.

Avoid warning with SolarisStudio.
This commit is contained in:
Stephen Kelly
2015-01-17 14:48:27 +01:00
parent 69182ce4ed
commit 5d57970dd9
@@ -13,6 +13,6 @@ struct B : public A
void someFunc()
{
int i;
int i = 0;
B b(i);
}