swc/crates/swc_plugin/tests/js.rs

12 lines
204 B
Rust
Raw Normal View History

//! Ensure that wrong macro definitions are catched by swc monorepo.
use swc_ecma_visit::Fold;
fn drop_console(_: ()) -> impl Fold {
DropConsole
}
struct DropConsole;
impl Fold for DropConsole {}