ethereum / remix-desktop

Remix IDE desktop
1.03k stars 265 forks source link

v.1.3.5: import broken #163

Open ThomasWallner opened 1 year ago

ThomasWallner commented 1 year ago

a.sol:

pragma solidity >=0.7.0 <0.9.0;
import "b.sol";

b.sol: pragma solidity >=0.7.0 <0.9.0;

Always get "Error: not found b.sol" when compiling a.sol

ThomasWallner commented 1 year ago

import "./b.sol" does work