﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
225	module-name.rule-name not in global namespace	Md Abdur Rahim	somebody	"The example provided [http://www.boost.org/boost-build2/doc/html/jam/language.html#jam.language.modules.declaration here] doesn't work in bjam. Here's what i see:

{{{
$ cat test.jam 
module my_module
{
    rule salute ( x ) { ECHO $(x), world ; }
    rule greet ( ) { salute hello ; }
    greet ;
}
my_module.salute goodbye ;

NOCARE all ;
$ bjam -f test.jam
hello, world
test.jam:7: in module scope
rule my_module.salute unknown in module 
}}}

I've attached a patch that fixes this issue. Let me know if i'm doing something wrong."	defect	new	major		component1	2.0			chetanreddy@…
