# This file is a part of Julia. License is MIT: https://julialang.org/license function code_coverage_test() if rand(1:2) == 3 return "hello" # never reached else r = Int[] for i = 1:3 push!(r, i) end nothing return r end not_reached end @eval short_form_func_coverage_test(x) = begin $(Expr(:line, 1234)) y() = begin x end x * y() end success = code_coverage_test() == [1, 2, 3] && short_form_func_coverage_test(2) == 4 exit(success ? 0 : 1) # end of file