fix impl trait message, bless tests
This commit is contained in:
parent
f04f732503
commit
207fb5f070
31 changed files with 129 additions and 256 deletions
|
@ -297,7 +297,7 @@ impl std::fmt::Display for ImplTraitPosition {
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
let name = match self {
|
let name = match self {
|
||||||
ImplTraitPosition::Path => "path",
|
ImplTraitPosition::Path => "path",
|
||||||
ImplTraitPosition::Variable => "variable",
|
ImplTraitPosition::Variable => "variable binding",
|
||||||
ImplTraitPosition::Type => "type",
|
ImplTraitPosition::Type => "type",
|
||||||
ImplTraitPosition::Trait => "trait",
|
ImplTraitPosition::Trait => "trait",
|
||||||
ImplTraitPosition::AsyncBlock => "async block",
|
ImplTraitPosition::AsyncBlock => "async block",
|
||||||
|
@ -1419,10 +1419,9 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
|
||||||
self.sess,
|
self.sess,
|
||||||
t.span,
|
t.span,
|
||||||
E0562,
|
E0562,
|
||||||
"`impl Trait` not allowed outside of \
|
"`impl Trait` only allowed in function and inherent method return types, not in {}",
|
||||||
function and inherent method return types",
|
position
|
||||||
);
|
);
|
||||||
err.note(&format!("found `impl Trait` in {}", position));
|
|
||||||
err.emit();
|
err.emit();
|
||||||
hir::TyKind::Err
|
hir::TyKind::Err
|
||||||
}
|
}
|
||||||
|
|
|
@ -57,20 +57,20 @@ fn _rpit_dyn() -> Box<dyn Tr1<As1: Copy>> { Box::new(S1) }
|
||||||
|
|
||||||
const _cdef: impl Tr1<As1: Copy> = S1;
|
const _cdef: impl Tr1<As1: Copy> = S1;
|
||||||
//~^ ERROR associated type bounds are unstable
|
//~^ ERROR associated type bounds are unstable
|
||||||
//~| ERROR `impl Trait` not allowed outside of function and inherent method return types [E0562]
|
//~| ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
// FIXME: uncomment when `impl_trait_in_bindings` feature is fixed.
|
// FIXME: uncomment when `impl_trait_in_bindings` feature is fixed.
|
||||||
// const _cdef_dyn: &dyn Tr1<As1: Copy> = &S1;
|
// const _cdef_dyn: &dyn Tr1<As1: Copy> = &S1;
|
||||||
|
|
||||||
static _sdef: impl Tr1<As1: Copy> = S1;
|
static _sdef: impl Tr1<As1: Copy> = S1;
|
||||||
//~^ ERROR associated type bounds are unstable
|
//~^ ERROR associated type bounds are unstable
|
||||||
//~| ERROR `impl Trait` not allowed outside of function and inherent method return types [E0562]
|
//~| ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
// FIXME: uncomment when `impl_trait_in_bindings` feature is fixed.
|
// FIXME: uncomment when `impl_trait_in_bindings` feature is fixed.
|
||||||
// static _sdef_dyn: &dyn Tr1<As1: Copy> = &S1;
|
// static _sdef_dyn: &dyn Tr1<As1: Copy> = &S1;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let _: impl Tr1<As1: Copy> = S1;
|
let _: impl Tr1<As1: Copy> = S1;
|
||||||
//~^ ERROR associated type bounds are unstable
|
//~^ ERROR associated type bounds are unstable
|
||||||
//~| ERROR `impl Trait` not allowed outside of function and inherent method return types [E0562]
|
//~| ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
// FIXME: uncomment when `impl_trait_in_bindings` feature is fixed.
|
// FIXME: uncomment when `impl_trait_in_bindings` feature is fixed.
|
||||||
// let _: &dyn Tr1<As1: Copy> = &S1;
|
// let _: &dyn Tr1<As1: Copy> = &S1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -115,29 +115,23 @@ LL | let _: impl Tr1<As1: Copy> = S1;
|
||||||
= note: see issue #52662 <https://github.com/rust-lang/rust/issues/52662> for more information
|
= note: see issue #52662 <https://github.com/rust-lang/rust/issues/52662> for more information
|
||||||
= help: add `#![feature(associated_type_bounds)]` to the crate attributes to enable
|
= help: add `#![feature(associated_type_bounds)]` to the crate attributes to enable
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/feature-gate-associated_type_bounds.rs:58:14
|
--> $DIR/feature-gate-associated_type_bounds.rs:58:14
|
||||||
|
|
|
|
||||||
LL | const _cdef: impl Tr1<As1: Copy> = S1;
|
LL | const _cdef: impl Tr1<As1: Copy> = S1;
|
||||||
| ^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/feature-gate-associated_type_bounds.rs:64:15
|
--> $DIR/feature-gate-associated_type_bounds.rs:64:15
|
||||||
|
|
|
|
||||||
LL | static _sdef: impl Tr1<As1: Copy> = S1;
|
LL | static _sdef: impl Tr1<As1: Copy> = S1;
|
||||||
| ^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in variable binding
|
||||||
--> $DIR/feature-gate-associated_type_bounds.rs:71:12
|
--> $DIR/feature-gate-associated_type_bounds.rs:71:12
|
||||||
|
|
|
|
||||||
LL | let _: impl Tr1<As1: Copy> = S1;
|
LL | let _: impl Tr1<As1: Copy> = S1;
|
||||||
| ^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in variable
|
|
||||||
|
|
||||||
error[E0277]: the trait bound `<<Self as _Tr3>::A as Iterator>::Item: Copy` is not satisfied
|
error[E0277]: the trait bound `<<Self as _Tr3>::A as Iterator>::Item: Copy` is not satisfied
|
||||||
--> $DIR/feature-gate-associated_type_bounds.rs:15:28
|
--> $DIR/feature-gate-associated_type_bounds.rs:15:28
|
||||||
|
|
|
@ -2,6 +2,6 @@ use std::fmt::Debug;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let x: Option<impl Debug> = Some(44_u32);
|
let x: Option<impl Debug> = Some(44_u32);
|
||||||
//~^ `impl Trait` not allowed outside of function and inherent method return types
|
//~^ `impl Trait` only allowed in function and inherent method return types
|
||||||
println!("{:?}", x);
|
println!("{:?}", x);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in variable binding
|
||||||
--> $DIR/issue-54600.rs:4:19
|
--> $DIR/issue-54600.rs:4:19
|
||||||
|
|
|
|
||||||
LL | let x: Option<impl Debug> = Some(44_u32);
|
LL | let x: Option<impl Debug> = Some(44_u32);
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in variable
|
|
||||||
|
|
||||||
error: aborting due to previous error
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
|
|
@ -3,5 +3,5 @@ use std::ops::Add;
|
||||||
fn main() {
|
fn main() {
|
||||||
let i: i32 = 0;
|
let i: i32 = 0;
|
||||||
let j: &impl Add = &i;
|
let j: &impl Add = &i;
|
||||||
//~^ `impl Trait` not allowed outside of function and inherent method return types
|
//~^ `impl Trait` only allowed in function and inherent method return types
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in variable binding
|
||||||
--> $DIR/issue-54840.rs:5:13
|
--> $DIR/issue-54840.rs:5:13
|
||||||
|
|
|
|
||||||
LL | let j: &impl Add = &i;
|
LL | let j: &impl Add = &i;
|
||||||
| ^^^^^^^^
|
| ^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in variable
|
|
||||||
|
|
||||||
error: aborting due to previous error
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
|
|
@ -8,5 +8,5 @@ fn mk_gen() -> impl Generator<Return=!, Yield=()> {
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let gens: [impl Generator<Return=!, Yield=()>;2] = [ mk_gen(), mk_gen() ];
|
let gens: [impl Generator<Return=!, Yield=()>;2] = [ mk_gen(), mk_gen() ];
|
||||||
//~^ `impl Trait` not allowed outside of function and inherent method return types
|
//~^ `impl Trait` only allowed in function and inherent method return types
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in variable binding
|
||||||
--> $DIR/issue-58504.rs:10:16
|
--> $DIR/issue-58504.rs:10:16
|
||||||
|
|
|
|
||||||
LL | let gens: [impl Generator<Return=!, Yield=()>;2] = [ mk_gen(), mk_gen() ];
|
LL | let gens: [impl Generator<Return=!, Yield=()>;2] = [ mk_gen(), mk_gen() ];
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in variable
|
|
||||||
|
|
||||||
error: aborting due to previous error
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
|
|
@ -5,9 +5,9 @@ impl Lam for B {}
|
||||||
pub struct Wrap<T>(T);
|
pub struct Wrap<T>(T);
|
||||||
|
|
||||||
const _A: impl Lam = {
|
const _A: impl Lam = {
|
||||||
//~^ `impl Trait` not allowed outside of function and inherent method return types
|
//~^ `impl Trait` only allowed in function and inherent method return types
|
||||||
let x: Wrap<impl Lam> = Wrap(B);
|
let x: Wrap<impl Lam> = Wrap(B);
|
||||||
//~^ `impl Trait` not allowed outside of function and inherent method return types
|
//~^ `impl Trait` only allowed in function and inherent method return types
|
||||||
x.0
|
x.0
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,18 +1,14 @@
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/issue-58956.rs:7:11
|
--> $DIR/issue-58956.rs:7:11
|
||||||
|
|
|
|
||||||
LL | const _A: impl Lam = {
|
LL | const _A: impl Lam = {
|
||||||
| ^^^^^^^^
|
| ^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in variable binding
|
||||||
--> $DIR/issue-58956.rs:9:17
|
--> $DIR/issue-58956.rs:9:17
|
||||||
|
|
|
|
||||||
LL | let x: Wrap<impl Lam> = Wrap(B);
|
LL | let x: Wrap<impl Lam> = Wrap(B);
|
||||||
| ^^^^^^^^
|
| ^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in variable
|
|
||||||
|
|
||||||
error: aborting due to 2 previous errors
|
error: aborting due to 2 previous errors
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
fn main() {
|
fn main() {
|
||||||
let x : (impl Copy,) = (true,);
|
let x : (impl Copy,) = (true,);
|
||||||
//~^ `impl Trait` not allowed outside of function and inherent method return types
|
//~^ `impl Trait` only allowed in function and inherent method return types
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in variable binding
|
||||||
--> $DIR/issue-70971.rs:2:14
|
--> $DIR/issue-70971.rs:2:14
|
||||||
|
|
|
|
||||||
LL | let x : (impl Copy,) = (true,);
|
LL | let x : (impl Copy,) = (true,);
|
||||||
| ^^^^^^^^^
|
| ^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in variable
|
|
||||||
|
|
||||||
error: aborting due to previous error
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
struct Bug {
|
struct Bug {
|
||||||
V1: [(); {
|
V1: [(); {
|
||||||
let f: impl core::future::Future<Output = u8> = async { 1 };
|
let f: impl core::future::Future<Output = u8> = async { 1 };
|
||||||
//~^ `impl Trait` not allowed outside of function and inherent method return types
|
//~^ `impl Trait` only allowed in function and inherent method return types
|
||||||
//~| expected identifier
|
//~| expected identifier
|
||||||
1
|
1
|
||||||
}],
|
}],
|
||||||
|
|
|
@ -9,13 +9,11 @@ LL | let f: impl core::future::Future<Output = u8> = async { 1 };
|
||||||
= help: set `edition = "2021"` in `Cargo.toml`
|
= help: set `edition = "2021"` in `Cargo.toml`
|
||||||
= note: for more on editions, read https://doc.rust-lang.org/edition-guide
|
= note: for more on editions, read https://doc.rust-lang.org/edition-guide
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in variable binding
|
||||||
--> $DIR/issue-79099.rs:3:16
|
--> $DIR/issue-79099.rs:3:16
|
||||||
|
|
|
|
||||||
LL | let f: impl core::future::Future<Output = u8> = async { 1 };
|
LL | let f: impl core::future::Future<Output = u8> = async { 1 };
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in variable
|
|
||||||
|
|
||||||
error: aborting due to 2 previous errors
|
error: aborting due to 2 previous errors
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
struct Foo<T = impl Copy>(T);
|
struct Foo<T = impl Copy>(T);
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
type Result<T, E = impl std::error::Error> = std::result::Result<T, E>;
|
type Result<T, E = impl std::error::Error> = std::result::Result<T, E>;
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// should not cause ICE
|
// should not cause ICE
|
||||||
fn x() -> Foo {
|
fn x() -> Foo {
|
||||||
|
|
|
@ -1,18 +1,14 @@
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/issue-83929-impl-trait-in-generic-default.rs:1:16
|
--> $DIR/issue-83929-impl-trait-in-generic-default.rs:1:16
|
||||||
|
|
|
|
||||||
LL | struct Foo<T = impl Copy>(T);
|
LL | struct Foo<T = impl Copy>(T);
|
||||||
| ^^^^^^^^^
|
| ^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/issue-83929-impl-trait-in-generic-default.rs:4:20
|
--> $DIR/issue-83929-impl-trait-in-generic-default.rs:4:20
|
||||||
|
|
|
|
||||||
LL | type Result<T, E = impl std::error::Error> = std::result::Result<T, E>;
|
LL | type Result<T, E = impl std::error::Error> = std::result::Result<T, E>;
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error: aborting due to 2 previous errors
|
error: aborting due to 2 previous errors
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ impl Trait for () {}
|
||||||
|
|
||||||
fn foo<'a: 'a>() {
|
fn foo<'a: 'a>() {
|
||||||
let _x: impl Trait = ();
|
let _x: impl Trait = ();
|
||||||
//~^ `impl Trait` not allowed outside of function and inherent method return types
|
//~^ `impl Trait` only allowed in function and inherent method return types
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main() {}
|
fn main() {}
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in variable binding
|
||||||
--> $DIR/issue-84919.rs:5:13
|
--> $DIR/issue-84919.rs:5:13
|
||||||
|
|
|
|
||||||
LL | let _x: impl Trait = ();
|
LL | let _x: impl Trait = ();
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in variable
|
|
||||||
|
|
||||||
error: aborting due to previous error
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
static x: impl Fn(&str) -> Result<&str, ()> = move |source| {
|
static x: impl Fn(&str) -> Result<&str, ()> = move |source| {
|
||||||
//~^ `impl Trait` not allowed outside of function and inherent method return types
|
//~^ `impl Trait` only allowed in function and inherent method return types
|
||||||
let res = (move |source| Ok(source))(source);
|
let res = (move |source| Ok(source))(source);
|
||||||
let res = res.or((move |source| Ok(source))(source));
|
let res = res.or((move |source| Ok(source))(source));
|
||||||
res
|
res
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/issue-86642.rs:1:11
|
--> $DIR/issue-86642.rs:1:11
|
||||||
|
|
|
|
||||||
LL | static x: impl Fn(&str) -> Result<&str, ()> = move |source| {
|
LL | static x: impl Fn(&str) -> Result<&str, ()> = move |source| {
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error: aborting due to previous error
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
|
|
@ -14,5 +14,5 @@ impl<F> Struct<F> {
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let _do_not_waste: Struct<impl Trait<Output = i32>> = Struct::new(());
|
let _do_not_waste: Struct<impl Trait<Output = i32>> = Struct::new(());
|
||||||
//~^ `impl Trait` not allowed outside of function and inherent method return types
|
//~^ `impl Trait` only allowed in function and inherent method return types
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in variable binding
|
||||||
--> $DIR/issue-87295.rs:16:31
|
--> $DIR/issue-87295.rs:16:31
|
||||||
|
|
|
|
||||||
LL | let _do_not_waste: Struct<impl Trait<Output = i32>> = Struct::new(());
|
LL | let _do_not_waste: Struct<impl Trait<Output = i32>> = Struct::new(());
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in variable
|
|
||||||
|
|
||||||
error: aborting due to previous error
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ fn bad_in_ret_position(x: impl Into<u32>) -> impl Into<impl Debug> { x }
|
||||||
|
|
||||||
fn bad_in_fn_syntax(x: fn() -> impl Into<impl Debug>) {}
|
fn bad_in_fn_syntax(x: fn() -> impl Into<impl Debug>) {}
|
||||||
//~^ ERROR nested `impl Trait` is not allowed
|
//~^ ERROR nested `impl Trait` is not allowed
|
||||||
//~^^ `impl Trait` not allowed
|
//~| `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
fn bad_in_arg_position(_: impl Into<impl Debug>) { }
|
fn bad_in_arg_position(_: impl Into<impl Debug>) { }
|
||||||
//~^ ERROR nested `impl Trait` is not allowed
|
//~^ ERROR nested `impl Trait` is not allowed
|
||||||
|
@ -23,7 +23,7 @@ fn allowed_in_assoc_type() -> impl Iterator<Item=impl Fn()> {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn allowed_in_ret_type() -> impl Fn() -> impl Into<u32> {
|
fn allowed_in_ret_type() -> impl Fn() -> impl Into<u32> {
|
||||||
//~^ `impl Trait` not allowed
|
//~^ `impl Trait` only allowed in function and inherent method return types
|
||||||
|| 5
|
|| 5
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -34,21 +34,17 @@ LL | fn bad(x: impl Into<u32>) -> impl Into<impl Debug> { x }
|
||||||
| | nested `impl Trait` here
|
| | nested `impl Trait` here
|
||||||
| outer `impl Trait`
|
| outer `impl Trait`
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `fn` pointer return
|
||||||
--> $DIR/nested_impl_trait.rs:8:32
|
--> $DIR/nested_impl_trait.rs:8:32
|
||||||
|
|
|
|
||||||
LL | fn bad_in_fn_syntax(x: fn() -> impl Into<impl Debug>) {}
|
LL | fn bad_in_fn_syntax(x: fn() -> impl Into<impl Debug>) {}
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `fn` pointer return
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `Fn` trait return
|
||||||
--> $DIR/nested_impl_trait.rs:25:42
|
--> $DIR/nested_impl_trait.rs:25:42
|
||||||
|
|
|
|
||||||
LL | fn allowed_in_ret_type() -> impl Fn() -> impl Into<u32> {
|
LL | fn allowed_in_ret_type() -> impl Fn() -> impl Into<u32> {
|
||||||
| ^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `Fn` trait return
|
|
||||||
|
|
||||||
error: aborting due to 6 previous errors
|
error: aborting due to 6 previous errors
|
||||||
|
|
||||||
|
|
|
@ -13,61 +13,61 @@ fn in_adt_in_parameters(_: Vec<impl Debug>) { panic!() }
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_fn_parameter_in_parameters(_: fn(impl Debug)) { panic!() }
|
fn in_fn_parameter_in_parameters(_: fn(impl Debug)) { panic!() }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_fn_return_in_parameters(_: fn() -> impl Debug) { panic!() }
|
fn in_fn_return_in_parameters(_: fn() -> impl Debug) { panic!() }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_fn_parameter_in_return() -> fn(impl Debug) { panic!() }
|
fn in_fn_parameter_in_return() -> fn(impl Debug) { panic!() }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_fn_return_in_return() -> fn() -> impl Debug { panic!() }
|
fn in_fn_return_in_return() -> fn() -> impl Debug { panic!() }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_dyn_Fn_parameter_in_parameters(_: &dyn Fn(impl Debug)) { panic!() }
|
fn in_dyn_Fn_parameter_in_parameters(_: &dyn Fn(impl Debug)) { panic!() }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_dyn_Fn_return_in_parameters(_: &dyn Fn() -> impl Debug) { panic!() }
|
fn in_dyn_Fn_return_in_parameters(_: &dyn Fn() -> impl Debug) { panic!() }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_dyn_Fn_parameter_in_return() -> &'static dyn Fn(impl Debug) { panic!() }
|
fn in_dyn_Fn_parameter_in_return() -> &'static dyn Fn(impl Debug) { panic!() }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_dyn_Fn_return_in_return() -> &'static dyn Fn() -> impl Debug { panic!() }
|
fn in_dyn_Fn_return_in_return() -> &'static dyn Fn() -> impl Debug { panic!() }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_impl_Fn_parameter_in_parameters(_: &impl Fn(impl Debug)) { panic!() }
|
fn in_impl_Fn_parameter_in_parameters(_: &impl Fn(impl Debug)) { panic!() }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
//~^^ ERROR nested `impl Trait` is not allowed
|
//~^^ ERROR nested `impl Trait` is not allowed
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_impl_Fn_return_in_parameters(_: &impl Fn() -> impl Debug) { panic!() }
|
fn in_impl_Fn_return_in_parameters(_: &impl Fn() -> impl Debug) { panic!() }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_impl_Fn_parameter_in_return() -> &'static impl Fn(impl Debug) { panic!() }
|
fn in_impl_Fn_parameter_in_return() -> &'static impl Fn(impl Debug) { panic!() }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
//~| ERROR nested `impl Trait` is not allowed
|
//~| ERROR nested `impl Trait` is not allowed
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_impl_Fn_return_in_return() -> &'static impl Fn() -> impl Debug { panic!() }
|
fn in_impl_Fn_return_in_return() -> &'static impl Fn() -> impl Debug { panic!() }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_Fn_parameter_in_generics<F: Fn(impl Debug)> (_: F) { panic!() }
|
fn in_Fn_parameter_in_generics<F: Fn(impl Debug)> (_: F) { panic!() }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_Fn_return_in_generics<F: Fn() -> impl Debug> (_: F) { panic!() }
|
fn in_Fn_return_in_generics<F: Fn() -> impl Debug> (_: F) { panic!() }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
|
|
||||||
// Allowed
|
// Allowed
|
||||||
|
@ -80,22 +80,22 @@ fn in_impl_Trait_in_return() -> impl IntoIterator<Item = impl IntoIterator> {
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
struct InBraceStructField { x: impl Debug }
|
struct InBraceStructField { x: impl Debug }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
struct InAdtInBraceStructField { x: Vec<impl Debug> }
|
struct InAdtInBraceStructField { x: Vec<impl Debug> }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
struct InTupleStructField(impl Debug);
|
struct InTupleStructField(impl Debug);
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
enum InEnum {
|
enum InEnum {
|
||||||
InBraceVariant { x: impl Debug },
|
InBraceVariant { x: impl Debug },
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
InTupleVariant(impl Debug),
|
InTupleVariant(impl Debug),
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
}
|
}
|
||||||
|
|
||||||
// Allowed
|
// Allowed
|
||||||
|
@ -106,7 +106,7 @@ trait InTraitDefnParameters {
|
||||||
// Disallowed
|
// Disallowed
|
||||||
trait InTraitDefnReturn {
|
trait InTraitDefnReturn {
|
||||||
fn in_return() -> impl Debug;
|
fn in_return() -> impl Debug;
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
}
|
}
|
||||||
|
|
||||||
// Allowed and disallowed in trait impls
|
// Allowed and disallowed in trait impls
|
||||||
|
@ -123,7 +123,7 @@ impl DummyTrait for () {
|
||||||
// Allowed
|
// Allowed
|
||||||
|
|
||||||
fn in_trait_impl_return() -> impl Debug { () }
|
fn in_trait_impl_return() -> impl Debug { () }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
}
|
}
|
||||||
|
|
||||||
// Allowed
|
// Allowed
|
||||||
|
@ -136,10 +136,10 @@ impl DummyType {
|
||||||
// Disallowed
|
// Disallowed
|
||||||
extern "C" {
|
extern "C" {
|
||||||
fn in_foreign_parameters(_: impl Debug);
|
fn in_foreign_parameters(_: impl Debug);
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
fn in_foreign_return() -> impl Debug;
|
fn in_foreign_return() -> impl Debug;
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
}
|
}
|
||||||
|
|
||||||
// Allowed
|
// Allowed
|
||||||
|
@ -155,97 +155,97 @@ type InTypeAlias<R> = impl Debug;
|
||||||
//~^ ERROR `impl Trait` in type aliases is unstable
|
//~^ ERROR `impl Trait` in type aliases is unstable
|
||||||
|
|
||||||
type InReturnInTypeAlias<R> = fn() -> impl Debug;
|
type InReturnInTypeAlias<R> = fn() -> impl Debug;
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
//~| ERROR `impl Trait` in type aliases is unstable
|
//~| ERROR `impl Trait` in type aliases is unstable
|
||||||
|
|
||||||
// Disallowed in impl headers
|
// Disallowed in impl headers
|
||||||
impl PartialEq<impl Debug> for () {
|
impl PartialEq<impl Debug> for () {
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
}
|
}
|
||||||
|
|
||||||
// Disallowed in impl headers
|
// Disallowed in impl headers
|
||||||
impl PartialEq<()> for impl Debug {
|
impl PartialEq<()> for impl Debug {
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
}
|
}
|
||||||
|
|
||||||
// Disallowed in inherent impls
|
// Disallowed in inherent impls
|
||||||
impl impl Debug {
|
impl impl Debug {
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
}
|
}
|
||||||
|
|
||||||
// Disallowed in inherent impls
|
// Disallowed in inherent impls
|
||||||
struct InInherentImplAdt<T> { t: T }
|
struct InInherentImplAdt<T> { t: T }
|
||||||
impl InInherentImplAdt<impl Debug> {
|
impl InInherentImplAdt<impl Debug> {
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
}
|
}
|
||||||
|
|
||||||
// Disallowed in where clauses
|
// Disallowed in where clauses
|
||||||
fn in_fn_where_clause()
|
fn in_fn_where_clause()
|
||||||
where impl Debug: Debug
|
where impl Debug: Debug
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
// Disallowed in where clauses
|
// Disallowed in where clauses
|
||||||
fn in_adt_in_fn_where_clause()
|
fn in_adt_in_fn_where_clause()
|
||||||
where Vec<impl Debug>: Debug
|
where Vec<impl Debug>: Debug
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_trait_parameter_in_fn_where_clause<T>()
|
fn in_trait_parameter_in_fn_where_clause<T>()
|
||||||
where T: PartialEq<impl Debug>
|
where T: PartialEq<impl Debug>
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_Fn_parameter_in_fn_where_clause<T>()
|
fn in_Fn_parameter_in_fn_where_clause<T>()
|
||||||
where T: Fn(impl Debug)
|
where T: Fn(impl Debug)
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_Fn_return_in_fn_where_clause<T>()
|
fn in_Fn_return_in_fn_where_clause<T>()
|
||||||
where T: Fn() -> impl Debug
|
where T: Fn() -> impl Debug
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
struct InStructGenericParamDefault<T = impl Debug>(T);
|
struct InStructGenericParamDefault<T = impl Debug>(T);
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
enum InEnumGenericParamDefault<T = impl Debug> { Variant(T) }
|
enum InEnumGenericParamDefault<T = impl Debug> { Variant(T) }
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
trait InTraitGenericParamDefault<T = impl Debug> {}
|
trait InTraitGenericParamDefault<T = impl Debug> {}
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
type InTypeAliasGenericParamDefault<T = impl Debug> = T;
|
type InTypeAliasGenericParamDefault<T = impl Debug> = T;
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
impl <T = impl Debug> T {}
|
impl <T = impl Debug> T {}
|
||||||
//~^ ERROR defaults for type parameters are only allowed in `struct`, `enum`, `type`, or `trait` definitions
|
//~^ ERROR defaults for type parameters are only allowed in `struct`, `enum`, `type`, or `trait` definitions
|
||||||
//~| WARNING this was previously accepted by the compiler but is being phased out
|
//~| WARNING this was previously accepted by the compiler but is being phased out
|
||||||
//~| ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~| ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
//~| ERROR no nominal type found
|
//~| ERROR no nominal type found
|
||||||
|
|
||||||
// Disallowed
|
// Disallowed
|
||||||
fn in_method_generic_param_default<T = impl Debug>(_: T) {}
|
fn in_method_generic_param_default<T = impl Debug>(_: T) {}
|
||||||
//~^ ERROR defaults for type parameters are only allowed in `struct`, `enum`, `type`, or `trait` definitions
|
//~^ ERROR defaults for type parameters are only allowed in `struct`, `enum`, `type`, or `trait` definitions
|
||||||
//~| WARNING this was previously accepted by the compiler but is being phased out
|
//~| WARNING this was previously accepted by the compiler but is being phased out
|
||||||
//~| ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~| ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let _in_local_variable: impl Fn() = || {};
|
let _in_local_variable: impl Fn() = || {};
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
let _in_return_in_local_variable = || -> impl Fn() { || {} };
|
let _in_return_in_local_variable = || -> impl Fn() { || {} };
|
||||||
//~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,333 +43,251 @@ LL | type InReturnInTypeAlias<R> = fn() -> impl Debug;
|
||||||
= note: see issue #63063 <https://github.com/rust-lang/rust/issues/63063> for more information
|
= note: see issue #63063 <https://github.com/rust-lang/rust/issues/63063> for more information
|
||||||
= help: add `#![feature(type_alias_impl_trait)]` to the crate attributes to enable
|
= help: add `#![feature(type_alias_impl_trait)]` to the crate attributes to enable
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `fn` pointer param
|
||||||
--> $DIR/where-allowed.rs:15:40
|
--> $DIR/where-allowed.rs:15:40
|
||||||
|
|
|
|
||||||
LL | fn in_fn_parameter_in_parameters(_: fn(impl Debug)) { panic!() }
|
LL | fn in_fn_parameter_in_parameters(_: fn(impl Debug)) { panic!() }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `fn` pointer param
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `fn` pointer return
|
||||||
--> $DIR/where-allowed.rs:19:42
|
--> $DIR/where-allowed.rs:19:42
|
||||||
|
|
|
|
||||||
LL | fn in_fn_return_in_parameters(_: fn() -> impl Debug) { panic!() }
|
LL | fn in_fn_return_in_parameters(_: fn() -> impl Debug) { panic!() }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `fn` pointer return
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `fn` pointer param
|
||||||
--> $DIR/where-allowed.rs:23:38
|
--> $DIR/where-allowed.rs:23:38
|
||||||
|
|
|
|
||||||
LL | fn in_fn_parameter_in_return() -> fn(impl Debug) { panic!() }
|
LL | fn in_fn_parameter_in_return() -> fn(impl Debug) { panic!() }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `fn` pointer param
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `fn` pointer return
|
||||||
--> $DIR/where-allowed.rs:27:40
|
--> $DIR/where-allowed.rs:27:40
|
||||||
|
|
|
|
||||||
LL | fn in_fn_return_in_return() -> fn() -> impl Debug { panic!() }
|
LL | fn in_fn_return_in_return() -> fn() -> impl Debug { panic!() }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `fn` pointer return
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `Fn` trait param
|
||||||
--> $DIR/where-allowed.rs:31:49
|
--> $DIR/where-allowed.rs:31:49
|
||||||
|
|
|
|
||||||
LL | fn in_dyn_Fn_parameter_in_parameters(_: &dyn Fn(impl Debug)) { panic!() }
|
LL | fn in_dyn_Fn_parameter_in_parameters(_: &dyn Fn(impl Debug)) { panic!() }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `Fn` trait param
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `Fn` trait return
|
||||||
--> $DIR/where-allowed.rs:35:51
|
--> $DIR/where-allowed.rs:35:51
|
||||||
|
|
|
|
||||||
LL | fn in_dyn_Fn_return_in_parameters(_: &dyn Fn() -> impl Debug) { panic!() }
|
LL | fn in_dyn_Fn_return_in_parameters(_: &dyn Fn() -> impl Debug) { panic!() }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `Fn` trait return
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `Fn` trait param
|
||||||
--> $DIR/where-allowed.rs:39:55
|
--> $DIR/where-allowed.rs:39:55
|
||||||
|
|
|
|
||||||
LL | fn in_dyn_Fn_parameter_in_return() -> &'static dyn Fn(impl Debug) { panic!() }
|
LL | fn in_dyn_Fn_parameter_in_return() -> &'static dyn Fn(impl Debug) { panic!() }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `Fn` trait param
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `Fn` trait return
|
||||||
--> $DIR/where-allowed.rs:43:57
|
--> $DIR/where-allowed.rs:43:57
|
||||||
|
|
|
|
||||||
LL | fn in_dyn_Fn_return_in_return() -> &'static dyn Fn() -> impl Debug { panic!() }
|
LL | fn in_dyn_Fn_return_in_return() -> &'static dyn Fn() -> impl Debug { panic!() }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `Fn` trait return
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `Fn` trait param
|
||||||
--> $DIR/where-allowed.rs:47:51
|
--> $DIR/where-allowed.rs:47:51
|
||||||
|
|
|
|
||||||
LL | fn in_impl_Fn_parameter_in_parameters(_: &impl Fn(impl Debug)) { panic!() }
|
LL | fn in_impl_Fn_parameter_in_parameters(_: &impl Fn(impl Debug)) { panic!() }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `Fn` trait param
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `Fn` trait return
|
||||||
--> $DIR/where-allowed.rs:52:53
|
--> $DIR/where-allowed.rs:52:53
|
||||||
|
|
|
|
||||||
LL | fn in_impl_Fn_return_in_parameters(_: &impl Fn() -> impl Debug) { panic!() }
|
LL | fn in_impl_Fn_return_in_parameters(_: &impl Fn() -> impl Debug) { panic!() }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `Fn` trait return
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `Fn` trait param
|
||||||
--> $DIR/where-allowed.rs:56:57
|
--> $DIR/where-allowed.rs:56:57
|
||||||
|
|
|
|
||||||
LL | fn in_impl_Fn_parameter_in_return() -> &'static impl Fn(impl Debug) { panic!() }
|
LL | fn in_impl_Fn_parameter_in_return() -> &'static impl Fn(impl Debug) { panic!() }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `Fn` trait param
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `Fn` trait return
|
||||||
--> $DIR/where-allowed.rs:61:59
|
--> $DIR/where-allowed.rs:61:59
|
||||||
|
|
|
|
||||||
LL | fn in_impl_Fn_return_in_return() -> &'static impl Fn() -> impl Debug { panic!() }
|
LL | fn in_impl_Fn_return_in_return() -> &'static impl Fn() -> impl Debug { panic!() }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `Fn` trait return
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `Fn` trait param
|
||||||
--> $DIR/where-allowed.rs:65:38
|
--> $DIR/where-allowed.rs:65:38
|
||||||
|
|
|
|
||||||
LL | fn in_Fn_parameter_in_generics<F: Fn(impl Debug)> (_: F) { panic!() }
|
LL | fn in_Fn_parameter_in_generics<F: Fn(impl Debug)> (_: F) { panic!() }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `Fn` trait param
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `Fn` trait return
|
||||||
--> $DIR/where-allowed.rs:69:40
|
--> $DIR/where-allowed.rs:69:40
|
||||||
|
|
|
|
||||||
LL | fn in_Fn_return_in_generics<F: Fn() -> impl Debug> (_: F) { panic!() }
|
LL | fn in_Fn_return_in_generics<F: Fn() -> impl Debug> (_: F) { panic!() }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `Fn` trait return
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/where-allowed.rs:82:32
|
--> $DIR/where-allowed.rs:82:32
|
||||||
|
|
|
|
||||||
LL | struct InBraceStructField { x: impl Debug }
|
LL | struct InBraceStructField { x: impl Debug }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in path
|
||||||
--> $DIR/where-allowed.rs:86:41
|
--> $DIR/where-allowed.rs:86:41
|
||||||
|
|
|
|
||||||
LL | struct InAdtInBraceStructField { x: Vec<impl Debug> }
|
LL | struct InAdtInBraceStructField { x: Vec<impl Debug> }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in path
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/where-allowed.rs:90:27
|
--> $DIR/where-allowed.rs:90:27
|
||||||
|
|
|
|
||||||
LL | struct InTupleStructField(impl Debug);
|
LL | struct InTupleStructField(impl Debug);
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/where-allowed.rs:95:25
|
--> $DIR/where-allowed.rs:95:25
|
||||||
|
|
|
|
||||||
LL | InBraceVariant { x: impl Debug },
|
LL | InBraceVariant { x: impl Debug },
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/where-allowed.rs:97:20
|
--> $DIR/where-allowed.rs:97:20
|
||||||
|
|
|
|
||||||
LL | InTupleVariant(impl Debug),
|
LL | InTupleVariant(impl Debug),
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in trait method return
|
||||||
--> $DIR/where-allowed.rs:108:23
|
--> $DIR/where-allowed.rs:108:23
|
||||||
|
|
|
|
||||||
LL | fn in_return() -> impl Debug;
|
LL | fn in_return() -> impl Debug;
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in trait method return
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `impl` method return
|
||||||
--> $DIR/where-allowed.rs:125:34
|
--> $DIR/where-allowed.rs:125:34
|
||||||
|
|
|
|
||||||
LL | fn in_trait_impl_return() -> impl Debug { () }
|
LL | fn in_trait_impl_return() -> impl Debug { () }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `impl` method return
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `extern fn` param
|
||||||
--> $DIR/where-allowed.rs:138:33
|
--> $DIR/where-allowed.rs:138:33
|
||||||
|
|
|
|
||||||
LL | fn in_foreign_parameters(_: impl Debug);
|
LL | fn in_foreign_parameters(_: impl Debug);
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `extern fn` param
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `extern fn` return
|
||||||
--> $DIR/where-allowed.rs:141:31
|
--> $DIR/where-allowed.rs:141:31
|
||||||
|
|
|
|
||||||
LL | fn in_foreign_return() -> impl Debug;
|
LL | fn in_foreign_return() -> impl Debug;
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `extern fn` return
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `fn` pointer return
|
||||||
--> $DIR/where-allowed.rs:157:39
|
--> $DIR/where-allowed.rs:157:39
|
||||||
|
|
|
|
||||||
LL | type InReturnInTypeAlias<R> = fn() -> impl Debug;
|
LL | type InReturnInTypeAlias<R> = fn() -> impl Debug;
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `fn` pointer return
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in trait
|
||||||
--> $DIR/where-allowed.rs:162:16
|
--> $DIR/where-allowed.rs:162:16
|
||||||
|
|
|
|
||||||
LL | impl PartialEq<impl Debug> for () {
|
LL | impl PartialEq<impl Debug> for () {
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in trait
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/where-allowed.rs:167:24
|
--> $DIR/where-allowed.rs:167:24
|
||||||
|
|
|
|
||||||
LL | impl PartialEq<()> for impl Debug {
|
LL | impl PartialEq<()> for impl Debug {
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/where-allowed.rs:172:6
|
--> $DIR/where-allowed.rs:172:6
|
||||||
|
|
|
|
||||||
LL | impl impl Debug {
|
LL | impl impl Debug {
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/where-allowed.rs:178:24
|
--> $DIR/where-allowed.rs:178:24
|
||||||
|
|
|
|
||||||
LL | impl InInherentImplAdt<impl Debug> {
|
LL | impl InInherentImplAdt<impl Debug> {
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/where-allowed.rs:184:11
|
--> $DIR/where-allowed.rs:184:11
|
||||||
|
|
|
|
||||||
LL | where impl Debug: Debug
|
LL | where impl Debug: Debug
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/where-allowed.rs:191:15
|
--> $DIR/where-allowed.rs:191:15
|
||||||
|
|
|
|
||||||
LL | where Vec<impl Debug>: Debug
|
LL | where Vec<impl Debug>: Debug
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in bound
|
||||||
--> $DIR/where-allowed.rs:198:24
|
--> $DIR/where-allowed.rs:198:24
|
||||||
|
|
|
|
||||||
LL | where T: PartialEq<impl Debug>
|
LL | where T: PartialEq<impl Debug>
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in bound
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `Fn` trait param
|
||||||
--> $DIR/where-allowed.rs:205:17
|
--> $DIR/where-allowed.rs:205:17
|
||||||
|
|
|
|
||||||
LL | where T: Fn(impl Debug)
|
LL | where T: Fn(impl Debug)
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `Fn` trait param
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `Fn` trait return
|
||||||
--> $DIR/where-allowed.rs:212:22
|
--> $DIR/where-allowed.rs:212:22
|
||||||
|
|
|
|
||||||
LL | where T: Fn() -> impl Debug
|
LL | where T: Fn() -> impl Debug
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `Fn` trait return
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/where-allowed.rs:218:40
|
--> $DIR/where-allowed.rs:218:40
|
||||||
|
|
|
|
||||||
LL | struct InStructGenericParamDefault<T = impl Debug>(T);
|
LL | struct InStructGenericParamDefault<T = impl Debug>(T);
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/where-allowed.rs:222:36
|
--> $DIR/where-allowed.rs:222:36
|
||||||
|
|
|
|
||||||
LL | enum InEnumGenericParamDefault<T = impl Debug> { Variant(T) }
|
LL | enum InEnumGenericParamDefault<T = impl Debug> { Variant(T) }
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/where-allowed.rs:226:38
|
--> $DIR/where-allowed.rs:226:38
|
||||||
|
|
|
|
||||||
LL | trait InTraitGenericParamDefault<T = impl Debug> {}
|
LL | trait InTraitGenericParamDefault<T = impl Debug> {}
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/where-allowed.rs:230:41
|
--> $DIR/where-allowed.rs:230:41
|
||||||
|
|
|
|
||||||
LL | type InTypeAliasGenericParamDefault<T = impl Debug> = T;
|
LL | type InTypeAliasGenericParamDefault<T = impl Debug> = T;
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/where-allowed.rs:234:11
|
--> $DIR/where-allowed.rs:234:11
|
||||||
|
|
|
|
||||||
LL | impl <T = impl Debug> T {}
|
LL | impl <T = impl Debug> T {}
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in type
|
||||||
--> $DIR/where-allowed.rs:241:40
|
--> $DIR/where-allowed.rs:241:40
|
||||||
|
|
|
|
||||||
LL | fn in_method_generic_param_default<T = impl Debug>(_: T) {}
|
LL | fn in_method_generic_param_default<T = impl Debug>(_: T) {}
|
||||||
| ^^^^^^^^^^
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in type
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in variable binding
|
||||||
--> $DIR/where-allowed.rs:247:29
|
--> $DIR/where-allowed.rs:247:29
|
||||||
|
|
|
|
||||||
LL | let _in_local_variable: impl Fn() = || {};
|
LL | let _in_local_variable: impl Fn() = || {};
|
||||||
| ^^^^^^^^^
|
| ^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in variable
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in closure return
|
||||||
--> $DIR/where-allowed.rs:249:46
|
--> $DIR/where-allowed.rs:249:46
|
||||||
|
|
|
|
||||||
LL | let _in_return_in_local_variable = || -> impl Fn() { || {} };
|
LL | let _in_return_in_local_variable = || -> impl Fn() { || {} };
|
||||||
| ^^^^^^^^^
|
| ^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in closure return
|
|
||||||
|
|
||||||
error: defaults for type parameters are only allowed in `struct`, `enum`, `type`, or `trait` definitions
|
error: defaults for type parameters are only allowed in `struct`, `enum`, `type`, or `trait` definitions
|
||||||
--> $DIR/where-allowed.rs:234:7
|
--> $DIR/where-allowed.rs:234:7
|
||||||
|
|
|
@ -7,22 +7,22 @@ trait Iterable {
|
||||||
}
|
}
|
||||||
|
|
||||||
struct Container<T: Iterable<Item = impl Foo>> {
|
struct Container<T: Iterable<Item = impl Foo>> {
|
||||||
//~^ ERROR `impl Trait` not allowed
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
field: T
|
field: T
|
||||||
}
|
}
|
||||||
|
|
||||||
enum Enum<T: Iterable<Item = impl Foo>> {
|
enum Enum<T: Iterable<Item = impl Foo>> {
|
||||||
//~^ ERROR `impl Trait` not allowed
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
A(T),
|
A(T),
|
||||||
}
|
}
|
||||||
|
|
||||||
union Union<T: Iterable<Item = impl Foo> + Copy> {
|
union Union<T: Iterable<Item = impl Foo> + Copy> {
|
||||||
//~^ ERROR `impl Trait` not allowed
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
x: T,
|
x: T,
|
||||||
}
|
}
|
||||||
|
|
||||||
type Type<T: Iterable<Item = impl Foo>> = T;
|
type Type<T: Iterable<Item = impl Foo>> = T;
|
||||||
//~^ ERROR `impl Trait` not allowed
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,34 +1,26 @@
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in generic
|
||||||
--> $DIR/issue-47715.rs:9:37
|
--> $DIR/issue-47715.rs:9:37
|
||||||
|
|
|
|
||||||
LL | struct Container<T: Iterable<Item = impl Foo>> {
|
LL | struct Container<T: Iterable<Item = impl Foo>> {
|
||||||
| ^^^^^^^^
|
| ^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in generic
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in generic
|
||||||
--> $DIR/issue-47715.rs:14:30
|
--> $DIR/issue-47715.rs:14:30
|
||||||
|
|
|
|
||||||
LL | enum Enum<T: Iterable<Item = impl Foo>> {
|
LL | enum Enum<T: Iterable<Item = impl Foo>> {
|
||||||
| ^^^^^^^^
|
| ^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in generic
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in generic
|
||||||
--> $DIR/issue-47715.rs:19:32
|
--> $DIR/issue-47715.rs:19:32
|
||||||
|
|
|
|
||||||
LL | union Union<T: Iterable<Item = impl Foo> + Copy> {
|
LL | union Union<T: Iterable<Item = impl Foo> + Copy> {
|
||||||
| ^^^^^^^^
|
| ^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in generic
|
|
||||||
|
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in generic
|
||||||
--> $DIR/issue-47715.rs:24:30
|
--> $DIR/issue-47715.rs:24:30
|
||||||
|
|
|
|
||||||
LL | type Type<T: Iterable<Item = impl Foo>> = T;
|
LL | type Type<T: Iterable<Item = impl Foo>> = T;
|
||||||
| ^^^^^^^^
|
| ^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in generic
|
|
||||||
|
|
||||||
error: aborting due to 4 previous errors
|
error: aborting due to 4 previous errors
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
// FIXME: this is ruled out for now but should work
|
// FIXME: this is ruled out for now but should work
|
||||||
|
|
||||||
type Foo = fn() -> impl Send;
|
type Foo = fn() -> impl Send;
|
||||||
//~^ ERROR: `impl Trait` not allowed outside of function and inherent method return types
|
//~^ ERROR: `impl Trait` only allowed in function and inherent method return types
|
||||||
|
|
||||||
fn make_foo() -> Foo {
|
fn make_foo() -> Foo {
|
||||||
|| 15
|
|| 15
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
|
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `fn` pointer return
|
||||||
--> $DIR/type-alias-impl-trait-fn-type.rs:6:20
|
--> $DIR/type-alias-impl-trait-fn-type.rs:6:20
|
||||||
|
|
|
|
||||||
LL | type Foo = fn() -> impl Send;
|
LL | type Foo = fn() -> impl Send;
|
||||||
| ^^^^^^^^^
|
| ^^^^^^^^^
|
||||||
|
|
|
||||||
= note: found `impl Trait` in `fn` pointer return
|
|
||||||
|
|
||||||
error: aborting due to previous error
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue