async-rs/async-std

#[async_std::test] macro expansion nukes where clause

DieracDelta opened this issue · 0 comments

If I have a where clause like:

#[async_std::test] 
pub fn run_test() where MyType: MyTrait
{
  ...
}

The macro expansion of this test eats the where clause. This seems like a bug.