The following code should be supported but not yet. ```rust #[gat_trait::gat_trait] trait Animal { async fn run(&self) { todo!() } } struct Dog; #[gat_trait::gat_trait] impl Animal for Dog {} ```