Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit d725379

Browse files
committed
Added missing import
1 parent 2a0b66d commit d725379

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/org/rascalmpl/core/library/lang/rascalcore/check/CheckerCommon.rsc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ import Set;
2727
import String;
2828
import ValueIO;
2929
import util::Reflective;
30+
import util::FileSystem;
3031

3132
import lang::rascalcore::compile::util::Names; // TODO: refactor, this is an undesired dependency on compile
3233
import lang::rascalcore::compile::CompileTimeError;
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module lang::rascalcore::compile::Examples::Tst0
22

33

4-
import Reflect;
5-
4+
import util::Reflective;
5+
66
int XX1 = 14 ;
77
int XXX = 13;
88

9-
int main() = XX;
9+
int main() = XX1;

0 commit comments

Comments
 (0)