summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/circular_dependency/test.lua
blob: 727e9187e1177e7daf67f242b20d62b1aa28a51e (plain)
1
2
3
4
5
6
7
import(".test_base", {alias = "test_build"})

function main(t)
    if test_build.can_build() then
        t:will_raise(test_build, "circular modules dependency detected")
    end
end