summaryrefslogtreecommitdiffstats
path: root/src/test/ui/inference/need_type_info/type-alias.stderr
blob: a33f49baf549f4506e793bd31a00000b33dbd51e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0282]: type annotations needed
  --> $DIR/type-alias.rs:12:5
   |
LL |     DirectAlias::new()
   |     ^^^^^^^^^^^^^^^^ cannot infer type for type parameter `T`

error[E0282]: type annotations needed
  --> $DIR/type-alias.rs:32:5
   |
LL |     DirectButWithDefaultAlias::new();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type parameter `T`

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0282`.