zig/test/cases
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
..
import
namespace_depends_on_compile_var
pub_enum
array.zig
asm.zig
atomics.zig
bool.zig
cast.zig
const_slice_child.zig
defer.zig
enum_with_members.zig
enum.zig
error.zig
eval.zig
field_parent_ptr.zig
fn.zig
for.zig
generics.zig
goto.zig
if.zig
import.zig
incomplete_struct_param_tld.zig
ir_block_deps.zig
math.zig
misc.zig
null.zig
ref_var_in_if_after_if_2nd_switch_prong.zig
sizeof_and_typeof.zig
slice.zig
struct_contains_slice_of_itself.zig
struct.zig
switch_prong_err_enum.zig
switch_prong_implicit_cast.zig
switch.zig
this.zig
try.zig
undefined.zig
var_args.zig
void.zig
while.zig