commit bb093f73ab72913b026be9669873bf540ccbcf8f
parent 8ec41efd31e3affdee34fd6c25a7403b80eeaef3
Author: Drew DeVault <sir@cmpwn.com>
Date: Mon, 11 Jan 2021 14:29:14 -0500
tests/07-aliases: uncomment assertion
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/07-aliases.ha b/tests/07-aliases.ha
@@ -38,7 +38,7 @@ fn alias_fn() void = {
let h: my_fn_ptr_ptr = &g;
assert(f(0) == foo(0), "fn alias");
assert(g(0) == foo(0), "fn ptr alias");
- //assert(h(0) == foo(0), "fn ptr ptr alias");
+ assert(h(0) == foo(0), "fn ptr ptr alias");
};
type my_struct = struct { x: int, y: int };