brk_rolldown 0.8.0

Fast JavaScript bundler in Rust, designed for the future of Vite
Documentation
---
source: crates/rolldown_testing/src/integration_test.rs
snapshot_kind: text
---
# Errors

## AMBIGUOUS_EXTERNAL_NAMESPACES

```text
[AMBIGUOUS_EXTERNAL_NAMESPACES] Error: Found ambiguous export.
   ╭─[ main.js:1:10 ]
   │
 1 │ import { value } from "./foo";
   │          ──┬──  
   │            ╰──── "foo.js" re-exports "value"
   │
   ├─[ a.js:1:14 ]
   │
 1 │ export const value = 1
   │              ──┬──  
   │                ╰──── One matching export is here.
   │
   ├─[ b.js:1:14 ]
   │
 1 │ export const value = 1
   │              ──┬──  
   │                ╰──── One matching export is here.
   │
   ├─[ c.js:1:14 ]
   │
 1 │ export const value = 1
   │              ──┬──  
   │                ╰──── One matching export is here.
───╯

```