async-std icon indicating copy to clipboard operation
async-std copied to clipboard

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

Open DieracDelta opened this issue 2 years ago • 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.

DieracDelta avatar Dec 14 '22 19:12 DieracDelta