We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2114f5c commit be1da13Copy full SHA for be1da13
crates/test/src/cpp.rs
@@ -45,6 +45,10 @@ impl LanguageMethods for Cpp {
45
config: &crate::config::WitConfig,
46
_args: &[String],
47
) -> bool {
48
+ // Compiles on C++ despite the blanket async exclusion below.
49
+ if name == "issue-1598.wit" {
50
+ return false;
51
+ }
52
return match name {
53
"issue1514-6.wit" | "named-fixed-length-list.wit" | "map.wit" => true,
54
_ => false,
crates/test/src/go.rs
@@ -30,6 +30,7 @@ impl LanguageMethods for Go {
30
config.error_context
31
|| name == "async-trait-function.wit"
32
|| name == "named-fixed-length-list.wit"
33
+ || name == "issue-1598.wit"
34
}
35
36
fn default_bindgen_args_for_codegen(&self) -> &[&str] {
0 commit comments