summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-type-bounds/return-type-notation/unpretty-parenthesized.stdout
blob: b3dea8f6eca71fdc3c50ade6d942d9f1520de33b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(prelude_import)]
#[prelude_import]
use std::prelude::rust_2021::*;
#[macro_use]
extern crate std;
// edition: 2021
// compile-flags: -Zunpretty=expanded

trait Trait {
    async fn method() {}
}

fn foo<T: Trait<method(i32) : Send>>() {}

fn main() {}