#![feature(universal_impl_trait)] use std::fmt::Debug; fn foo(x: impl Debug) { } fn main() { foo::('a'); //~ ERROR cannot provide explicit type parameters }