zig/test
Andrew Kelley 2dfb1ebee2 const global values can reference each other
Before, if you did something like:

```
const hi1 = "hi";
const hi2 = hi1;
```

This would create the "hi" data twice in the built object.
But since the value is const we don't have to duplicate the
data, now we take advantage of this fact.

closes #336
2017-05-27 00:54:14 -04:00
..
cases const global values can reference each other 2017-05-27 00:54:14 -04:00
standalone zig build: allow calling b.standardReleaseOptions... 2017-05-09 21:20:09 -04:00
assemble_and_link.zig @import("builtin") instead of @compileVar 2017-05-01 13:12:38 -04:00
behavior.zig ability to slice ptr to hard coded integer at comptime 2017-05-09 22:23:38 -04:00
build_examples.zig basic support for specifying packages at the command line 2017-05-01 16:35:10 -04:00
compare_output.zig
compile_errors.zig fix segfault with array of generic functions 2017-05-26 14:39:18 -04:00
debug_safety.zig builtin functions for division and remainder division 2017-05-06 23:13:12 -04:00
parseh.zig
tests.zig const global values can reference each other 2017-05-27 00:54:14 -04:00