// run-rustifx #![allow(unused)] use std::sync::{Arc, Mutex}; pub struct Foo { a: Mutex, b: Arc, //~ HELP you might have meant to end the type parameters here c: Arc>, } //~ ERROR expected one of fn main() {}