[Full code in Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=3b1a6a68ae4db990762e4a542fbf052a) Missing a trait bound for the trait that defines `fn foo` below: ```rust fn do_stuff<T : Bar>(t : T) { // Note the space before the colon in `T : Bar` t.foo() } ``` Results in the following suggestion with an extra colon after the plus. ``` fn do_stuff<T: Foo +: Bar>(t : T) { ```