summaryrefslogtreecommitdiff
path: root/tests/ui/associated-type-bounds/return-type-notation/missing.stderr
blob: 5b1c4cb0b2c0acf9be0f66913f0a184adc1a2d97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
warning: the feature `return_type_notation` is incomplete and may not be safe to use and/or cause compiler crashes
  --> $DIR/missing.rs:3:12
   |
LL | #![feature(return_type_notation, async_fn_in_trait)]
   |            ^^^^^^^^^^^^^^^^^^^^
   |
   = note: see issue #109417 <https://github.com/rust-lang/rust/issues/109417> for more information
   = note: `#[warn(incomplete_features)]` on by default

error: cannot find associated function `methid` for `Trait`
  --> $DIR/missing.rs:10:17
   |
LL | fn bar<T: Trait<methid(): Send>>() {}
   |                 ^^^^^^^^^^^^^^

error: aborting due to previous error; 1 warning emitted