﻿id	summary	reporter	owner	description	type	status	priority	component	version	resolution	keywords	cc
277	Constructors for nested types suffer from definition before use issues	caparson		"The following program does not call the appropriate constructor for A when constructing B so the print does not occur.

{{{
#!div style=""font-size: 80%""
  {{{#!C
struct A {};
struct B { A a; };
void ?{}( A & this ) { printf(""A ctor\n""); }

int main() {
    B b;
}
  }}}
}}}"	defect	new	major	cfa-cc	1.0			
