zig/test
Andrew Kelley b78c91951a remove ability to mark if and switch as inline
if and switch are implicitly inline if the condition/target
expression is known at compile time.

instead of:

```
inline if (condition) ...
inline switch (target) ...
```

one can use:

```
if (comptime condition) ...
switch (comptime target) ...
```
2017-02-02 13:23:18 -05:00
..
cases remove ability to mark if and switch as inline 2017-02-02 13:23:18 -05:00
run_tests.cpp
self_hosted.zig