aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/all-circular1.js
blob: 131dfecce3455ff25407c46b40abf8ccf70e7d75 (plain)
1
2
3
4
5
6
7
8
9
import { a } from './all-circular2.js';
export var q;
export function p() {
  q = a;
}

import o from './all-circular3.js';

export { o };