﻿id	summary	reporter	owner	description	type	status	priority	component	version	resolution	keywords	cc
148	"Incorrect ""Initializer is too deep"" error"	Thierry Delisle		"The code :
{{{
struct Global {
	int * a;
	struct {
		int a;
	} c;
	int d;
};

Global g1 = { 0p, {6}, 6 };
}}}

Should not lead to the error :
{{{
error: Managed object's initializer is too deep g1: instance of struct Global with body 1 with initializer (maybe constructed)
  Compound initializer: 
    Simple Initializer: Applying untyped:
      Name: intptr
    ...to:
      Explicit Cast of:
        constant expression (0 0: signed int)
      ... to:
        unsigned long int

    Compound initializer: 
      Simple Initializer: constant expression (6 6: signed int)

    Simple Initializer: constant expression (6 6: signed int)
}}}"	defect	new	minor	cfa-cc	1.0			
