Add a test case

This commit is contained in:
Hans Svensson 2023-09-08 16:27:49 +02:00
parent 628046c007
commit 3ce4e7360c
4 changed files with 11 additions and 0 deletions

View File

@ -161,6 +161,7 @@ compilable_contracts() ->
"state_handling",
"events",
"include",
"relative_include",
"basic_auth",
"basic_auth_tx",
"bitcoin_auth",

View File

@ -0,0 +1,4 @@
include "../dir2/baz.aes"
namespace D =
function g() = E.h()

View File

@ -0,0 +1,3 @@
namespace E =
function h() = 42

View File

@ -0,0 +1,3 @@
include "./dir1/bar.aes"
contract C =
entrypoint f() = D.g()