lsp: Finishing last missing test wrt complex nested project directory structure and specifying custom includes, while using some (one) of them.

This commit is contained in:
Christian Parpart
2022-08-22 12:49:06 +02:00
parent 122fbc6ff7
commit d31e4dcc0a
6 changed files with 113 additions and 0 deletions
@@ -0,0 +1,8 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.0;
import "otherlib/second.sol";
contract C
{
}
@@ -0,0 +1,6 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.0;
contract B
{
}
@@ -0,0 +1,6 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.0;
contract A
{
}
@@ -0,0 +1,6 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.0;
contract RootContract
{
}
@@ -0,0 +1,7 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.0;
library Second
{
function f(uint n) public pure returns (uint) { return n + 1; }
}