blob: c0fb431bf391eb487096d98afc66ce08152d3315 [file] [log] [blame]
Jeff Vander Stoepa414c4b2023-11-24 15:39:09 +01001pub trait Trait {
2 async fn method(&self);
3}
4
5pub struct Struct;
6
7impl Trait for Struct {
8 async fn method(&self) {}
9}
10
11fn main() {
12 let _: &dyn Trait;
13}