added test

This commit is contained in:
tinaun 2018-03-03 17:32:47 -05:00
parent d2b9a77bdf
commit 97e0dc330f
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,19 @@
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#![feature(universal_impl_trait)]
use std::fmt::Debug;
fn foo<T>(x: impl Debug) { }
fn main() {
foo::<String>('a'); //~ ERROR cannot provide explicit type parameters
}

View File

@ -0,0 +1,9 @@
error[E0632]: cannot provide explicit type parameters when `impl Trait` is used in argument position.
--> $DIR/universal-issue-48703.rs:18:5
|
LL | foo::<String>('a'); //~ ERROR cannot provide explicit type parameters
| ^^^^^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0632`.