mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 01:13:56 +03:00
12 lines
203 B
Rust
12 lines
203 B
Rust
//! Ensure that wrong macro definitions are caught by swc monorepo.
|
|
|
|
use swc_ecma_visit::Fold;
|
|
|
|
fn drop_console(_: ()) -> impl Fold {
|
|
DropConsole
|
|
}
|
|
|
|
struct DropConsole;
|
|
|
|
impl Fold for DropConsole {}
|