| author | |
| committer | |
| log | dc26dec8e0c86c42485842eb3949edfe816f0e55 |
| tree | a5f9c86fd54660ed7b2980d3d1a6c8f2d4357d38 |
| parent | 94f977a6c12f3c5877f404c51a01b1b32c8acaa6 |
2 files changed, 30 insertions(+), 30 deletions(-)
test/self_hosted.zig created+30| ... | @@ -0,0 +1,30 @@ | ||
| 1 | // TODO '_' identifier for unused variable bindings | ||
| 2 | const test_array = @import("cases/array.zig"); | ||
| 3 | const test_atomics = @import("cases/atomics.zig"); | ||
| 4 | const test_bool = @import("cases/bool.zig"); | ||
| 5 | const test_cast= @import("cases/cast.zig"); | ||
| 6 | const test_const_slice_child = @import("cases/const_slice_child.zig"); | ||
| 7 | const test_defer = @import("cases/defer.zig"); | ||
| 8 | const test_enum = @import("cases/enum.zig"); | ||
| 9 | const test_enum_with_members = @import("cases/enum_with_members.zig"); | ||
| 10 | const test_error = @import("cases/error.zig"); | ||
| 11 | const test_eval = @import("cases/eval.zig"); | ||
| 12 | const test_fn = @import("cases/fn.zig"); | ||
| 13 | const test_for = @import("cases/for.zig"); | ||
| 14 | const test_generics = @import("cases/generics.zig"); | ||
| 15 | const test_goto = @import("cases/goto.zig"); | ||
| 16 | const test_if = @import("cases/if.zig"); | ||
| 17 | const test_import = @import("cases/import.zig"); | ||
| 18 | const test_math = @import("cases/math.zig"); | ||
| 19 | const test_misc = @import("cases/misc.zig"); | ||
| 20 | const test_namespace_depends_on_compile_var = @import("cases/namespace_depends_on_compile_var/index.zig"); | ||
| 21 | const test_null = @import("cases/null.zig"); | ||
| 22 | const test_pub_enum = @import("cases/pub_enum/index.zig"); | ||
| 23 | const test_sizeof_and_typeof = @import("cases/sizeof_and_typeof.zig"); | ||
| 24 | const test_struct = @import("cases/struct.zig"); | ||
| 25 | const test_struct_contains_slice_of_itself = @import("cases/struct_contains_slice_of_itself.zig"); | ||
| 26 | const test_switch = @import("cases/switch.zig"); | ||
| 27 | const test_switch_prong_err_enum = @import("cases/switch_prong_err_enum.zig"); | ||
| 28 | const test_switch_prong_implicit_cast = @import("cases/switch_prong_implicit_cast.zig"); | ||
| 29 | const test_this = @import("cases/this.zig"); | ||
| 30 | const test_while = @import("cases/while.zig"); | ||
test/self_hosted3.zig deleted-30| ... | @@ -1,30 +0,0 @@ | ||
| 1 | // TODO '_' identifier for unused variable bindings | ||
| 2 | const test_array = @import("cases/array.zig"); | ||
| 3 | const test_atomics = @import("cases/atomics.zig"); | ||
| 4 | const test_bool = @import("cases/bool.zig"); | ||
| 5 | const test_cast= @import("cases/cast.zig"); | ||
| 6 | const test_const_slice_child = @import("cases/const_slice_child.zig"); | ||
| 7 | const test_defer = @import("cases/defer.zig"); | ||
| 8 | const test_enum = @import("cases/enum.zig"); | ||
| 9 | const test_enum_with_members = @import("cases/enum_with_members.zig"); | ||
| 10 | const test_error = @import("cases/error.zig"); | ||
| 11 | const test_eval = @import("cases/eval.zig"); | ||
| 12 | const test_fn = @import("cases/fn.zig"); | ||
| 13 | const test_for = @import("cases/for.zig"); | ||
| 14 | const test_generics = @import("cases/generics.zig"); | ||
| 15 | const test_goto = @import("cases/goto.zig"); | ||
| 16 | const test_if = @import("cases/if.zig"); | ||
| 17 | const test_import = @import("cases/import.zig"); | ||
| 18 | const test_math = @import("cases/math.zig"); | ||
| 19 | const test_misc = @import("cases/misc.zig"); | ||
| 20 | const test_namespace_depends_on_compile_var = @import("cases/namespace_depends_on_compile_var/index.zig"); | ||
| 21 | const test_null = @import("cases/null.zig"); | ||
| 22 | const test_pub_enum = @import("cases/pub_enum/index.zig"); | ||
| 23 | const test_sizeof_and_typeof = @import("cases/sizeof_and_typeof.zig"); | ||
| 24 | const test_struct = @import("cases/struct.zig"); | ||
| 25 | const test_struct_contains_slice_of_itself = @import("cases/struct_contains_slice_of_itself.zig"); | ||
| 26 | const test_switch = @import("cases/switch.zig"); | ||
| 27 | const test_switch_prong_err_enum = @import("cases/switch_prong_err_enum.zig"); | ||
| 28 | const test_switch_prong_implicit_cast = @import("cases/switch_prong_implicit_cast.zig"); | ||
| 29 | const test_this = @import("cases/this.zig"); | ||
| 30 | const test_while = @import("cases/while.zig"); | ||