Files
c3c/test/test_suite/compile_time/ct_eval_wrong.c3

10 lines
138 B
Plaintext

import std::io;
fn void main()
{
$eval("foo()"); // #error: could not be resolved to a valid
}
fn void foo()
{
io::printfn("foo");
}