diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-01-25 10:39:11 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-25 10:39:11 -0800 |
| commit | 4ca1f4ec2e3ae1a08295bc6ed03c235cb7700ab9 (patch) | |
| tree | b4b2cbaae3709b49cb435724d8de42da7d6d8280 /lib/std/math.zig | |
| parent | 57b2176e28fd336309922cc9182cffcf084c1879 (diff) | |
| parent | 134f5fd3d690cfdce2ab7d622cb233b3e510bf3a (diff) | |
| download | zig-4ca1f4ec2e3ae1a08295bc6ed03c235cb7700ab9.tar.gz zig-4ca1f4ec2e3ae1a08295bc6ed03c235cb7700ab9.zip | |
Merge pull request #7846 from LemonBoy/filtertest
stage1: don't filter test blocks with empty label
Diffstat (limited to 'lib/std/math.zig')
| -rw-r--r-- | lib/std/math.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/math.zig b/lib/std/math.zig index f95bcce617..6e7c5c0915 100644 --- a/lib/std/math.zig +++ b/lib/std/math.zig @@ -278,7 +278,7 @@ pub const Complex = complex.Complex; pub const big = @import("math/big.zig"); -test "" { +test { std.testing.refAllDecls(@This()); } |
