mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
42 lines
460 B
Text
42 lines
460 B
Text
---
|
|
source: crates/oxc_codegen/tests/integration/main.rs
|
|
---
|
|
########## 0
|
|
/* @license */
|
|
/* @license */
|
|
foo;bar;
|
|
----------
|
|
foo;
|
|
bar;
|
|
/* @license */
|
|
/* @license */
|
|
|
|
########## 1
|
|
/* @license */
|
|
/* @preserve */
|
|
foo;bar;
|
|
----------
|
|
foo;
|
|
bar;
|
|
/* @license */
|
|
/* @preserve */
|
|
|
|
########## 2
|
|
/* @license */
|
|
//! KEEP
|
|
foo;bar;
|
|
----------
|
|
foo;
|
|
bar;
|
|
/* @license */
|
|
//! KEEP
|
|
|
|
########## 3
|
|
/* @license */
|
|
/*! KEEP */
|
|
foo;bar;
|
|
----------
|
|
foo;
|
|
bar;
|
|
/* @license */
|
|
/*! KEEP */
|