summaryrefslogtreecommitdiffstats
path: root/tests/ui/feature-gates/feature-gate-default_type_parameter_fallback.stderr
blob: 308de2692930d26f1605f45ab3b29b966b365a12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error: defaults for type parameters are only allowed in `struct`, `enum`, `type`, or `trait` definitions
  --> $DIR/feature-gate-default_type_parameter_fallback.rs:3:8
   |
LL | fn avg<T=i32>(_: T) {}
   |        ^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #36887 <https://github.com/rust-lang/rust/issues/36887>
   = note: `#[deny(invalid_type_param_default)]` on by default

error: defaults for type parameters are only allowed in `struct`, `enum`, `type`, or `trait` definitions
  --> $DIR/feature-gate-default_type_parameter_fallback.rs:8:6
   |
LL | impl<T=i32> S<T> {}
   |      ^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #36887 <https://github.com/rust-lang/rust/issues/36887>

error: aborting due to 2 previous errors