﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
669	Wrong full names of members of a non named NameBlock	Víctor de Buen Remiro	Víctor de Buen Remiro	"Members of non named NameBlock should be equal to member name but it puts an extrage prefix name.
In version 1.1.7 it puts just ""::"" as prefix.
In version 2.0.1 it puts ""CMsg::Coded::Diagnostics::BysMcmc::Bsr::Import::DynHlm::DBApi::Options::"". which may be the full name of last used NameBlock.

You can view how aux.0 and aux.2 return wrong full names but aux.1 works fine.

{{{
Set aux.0 = SetOfNameBlock ( [[ Real t = 1 ]] ); 

Set aux.1 = For(1,3,NameBlock(Real t_)
{ a = [[
  Real t = t_
]]});

Set aux.2 = For(1,3,NameBlock(Real t_)
{ [[
  Real t = t_
]]});

Text name.0 = Name((aux.0[1])::t);
Text fullName.0 = FullName((aux.0[1])::t);
Text name.1 = Name((aux.1[1])::t);
Text fullName.1 = FullName((aux.1[1])::t);
Text name.2 = Name((aux.2[1])::t);
Text fullName.2 = FullName((aux.2[1])::t);

}}}
"	defect	closed	highest		Kernel	1.1.7	blocker	fixed	NameBlock, FullName	
