summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type-alias-impl-trait/coherence.stderr
blob: 3ce25d94f6e124b832d7d0e97a697f083b351831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: cannot implement trait on type alias impl trait
  --> $DIR/coherence.rs:14:41
   |
LL | impl<T> foreign_crate::ForeignTrait for AliasOfForeignType<T> {}
   |                                         ^^^^^^^^^^^^^^^^^^^^^
   |
note: type alias impl trait defined here
  --> $DIR/coherence.rs:9:30
   |
LL | type AliasOfForeignType<T> = impl LocalTrait;
   |                              ^^^^^^^^^^^^^^^

error: aborting due to previous error