diff options
| author | tinaun <tinagma@gmail.com> | 2018-03-03 17:32:47 -0500 |
|---|---|---|
| committer | tinaun <tinagma@gmail.com> | 2018-03-28 17:51:57 -0400 |
| commit | 97e0dc330fb4dfc3fc5161fbba1f0b4193d80bc9 (patch) | |
| tree | aa54ee9e9450b6eee133c9a07ad39476c24008c0 | |
| parent | d2b9a77bdfd3451f5e55f96d383f97aefb76e97e (diff) | |
| download | rust-97e0dc330fb4dfc3fc5161fbba1f0b4193d80bc9.tar.gz rust-97e0dc330fb4dfc3fc5161fbba1f0b4193d80bc9.zip | |
added test
| -rw-r--r-- | src/test/ui/impl-trait/universal-issue-48703.rs | 19 | ||||
| -rw-r--r-- | src/test/ui/impl-trait/universal-issue-48703.stderr | 9 |
2 files changed, 28 insertions, 0 deletions
diff --git a/src/test/ui/impl-trait/universal-issue-48703.rs b/src/test/ui/impl-trait/universal-issue-48703.rs new file mode 100644 index 00000000000..e017b37b7b7 --- /dev/null +++ b/src/test/ui/impl-trait/universal-issue-48703.rs @@ -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 +} diff --git a/src/test/ui/impl-trait/universal-issue-48703.stderr b/src/test/ui/impl-trait/universal-issue-48703.stderr new file mode 100644 index 00000000000..ea509684f9e --- /dev/null +++ b/src/test/ui/impl-trait/universal-issue-48703.stderr @@ -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`. |
