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