blob: f11cc019ebfa72b1cacefcd6b082f5f1a3acb90f (
plain)
1
2
3
4
5
6
7
|
// Only test on nightly, since UI tests are bound to change over time
#[rustversion::stable]
#[test]
fn async_instrument() {
let t = trybuild::TestCases::new();
t.compile_fail("tests/ui/async_instrument.rs");
}
|