wasmtime/runtime/gc/disabled/
i31.rs

1/// Support for `i31ref` disabled at compile time because the `gc` cargo feature
2/// was not enabled.
3pub enum I31 {}
4
5impl I31 {
6    pub fn get_u32(&self) -> u32 {
7        match *self {}
8    }
9
10    pub fn get_i32(&self) -> i32 {
11        match *self {}
12    }
13}