---
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.
───╯
```