2017-01-05 08:57:48 +00:00
|
|
|
const assert = @import("std").debug.assert;
|
2016-12-26 07:49:30 +00:00
|
|
|
const a_namespace = @import("cases/import/a_namespace.zig");
|
2016-12-22 05:12:27 +00:00
|
|
|
|
|
|
|
fn callFnViaNamespaceLookup() {
|
|
|
|
@setFnTest(this);
|
|
|
|
|
|
|
|
assert(a_namespace.foo() == 1234);
|
|
|
|
}
|