We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
async-trait-function.wit-no-std
1 parent fb93a87 commit 01fc8d1Copy full SHA for 01fc8d1
crates/test/src/rust.rs
@@ -61,7 +61,11 @@ impl LanguageMethods for Rust {
61
args: &[String],
62
) -> bool {
63
// no_std doesn't currently work with async
64
- if config.async_ && args.iter().any(|s| s == "--std-feature") {
+ if config.async_
65
+ && args.iter().any(|s| s == "--std-feature")
66
+ // Except this one actually _does_ work:
67
+ && name != "async-trait-function.wit-no-std"
68
+ {
69
return true;
70
}
71
0 commit comments