id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
168	Module exporter re-exports projections it has  imported	erikd		"With a simple module that defines a new projection on Data.List like this:

{{{
module Foo

project List where
	count = length
}}}

the exporter (src/Module/Exporter.hs) for this exports the following proections for Foo:

{{{
project Data.List.List %rDK125 where
{
        x = project_List_x;
        xs = project_List_xs;
        ref_x = project_List_ref_x;
        ref_xs = project_List_ref_xs;
        count = project_List_count;
}
}}}

where the first 4 are the projections already defined in Data.List. Only the last projection (count) should actually be exported from this module.
"	defect	new	blocker	0.1.3	Unknown	0.1.2			
