---
source: crates/rolldown_testing/src/integration_test.rs
---
# Assets
## a.js
```js
import { n as __toDynamicImportESM } from "./chunk.js";
//#region a.js
x ? import("a") : y ? import("./import.js").then(__toDynamicImportESM()) : import("c");
//#endregion
```
## b.js
```js
import { n as __toDynamicImportESM } from "./chunk.js";
//#region b.js
x ? y ? import("a") : import("./import.js").then(__toDynamicImportESM()) : import(c);
//#endregion
```
## chunk.js
```js
// HIDDEN [rolldown:runtime]
export { __toDynamicImportESM as n, __commonJS as t };
```
## import.js
```js
import { t as __commonJS } from "./chunk.js";
//#region import.js
var require_import = /* @__PURE__ */ __commonJS({ "import.js": ((exports) => {
exports.foo = 213;
}) });
//#endregion
export default require_import();
```