### STR ``` rust #![feature(associated_types)] pub trait Trait { type Output; } pub fn fun<T>(_: T) where T: Trait<Output=int> {} ``` ### Output  The `T: Trait` bound should render as `T: Trait<Output=int>` ### Version `rustc 0.13.0-nightly (c7dd3c4d6 2015-01-05 23:51:00 +0000)`