mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 08:46:53 +08:00
11 lines
180 B
ChaiScript
11 lines
180 B
ChaiScript
|
|
try {
|
|
eval_file("use.inc")
|
|
assert(true)
|
|
|
|
//we expect this second eval_file to fail because of a function redefinition
|
|
eval_file("use.inc")
|
|
assert(false)
|
|
} catch (e) {
|
|
}
|