mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 18:28:13 +03:00
9 lines
203 B
Rust
9 lines
203 B
Rust
#[cfg(all(feature = "binding_node", feature = "binding_wasm",))]
|
|
compile_error!(
|
|
"Macro cannot enable multiple bindings builder at once. Enable only one binding feature"
|
|
);
|
|
|
|
fn main() {
|
|
//noop
|
|
}
|