Bug 1453795 - MFTB - Initialize member fields in classes/ structures. r=waldo

--HG--
extra : rebase_source : e091acb3a9f60695b87ab9e3d348c5978680d2f8
This commit is contained in:
Andi-Bogdan Postelnicu 2018-06-15 13:49:31 +03:00
Родитель be47373507
Коммит 4a5d0dd615
1 изменённых файлов: 16 добавлений и 2 удалений

Просмотреть файл

@ -33,13 +33,27 @@ INSTANTIATE(int, int, prim1, 2 * sizeof(int));
INSTANTIATE(int, long, prim2, 2 * sizeof(long));
struct EmptyClass { explicit EmptyClass(int) {} };
struct NonEmpty { char mC; explicit NonEmpty(int) {} };
struct NonEmpty
{
char mC;
explicit NonEmpty(int)
: mC('\0')
{
}
};
INSTANTIATE(int, EmptyClass, both1, sizeof(int));
INSTANTIATE(int, NonEmpty, both2, 2 * sizeof(int));
INSTANTIATE(EmptyClass, NonEmpty, both3, 1);
struct A { char dummy; explicit A(int) {} };
struct A
{
char dummy;
explicit A(int)
: dummy('\0')
{
}
};
struct B : A { explicit B(int aI) : A(aI) {} };
INSTANTIATE(A, A, class1, 2);