aboutsummaryrefslogtreecommitdiff
path: root/test/compile_errors.zig
AgeCommit message (Expand)Author
2019-02-26add test coverage for binary OR on error setsAndrew Kelley
2019-02-25fix the libc compile error tests to only run on linuxAndrew Kelley
2019-02-25better error message when forgetting to link against libcAndrew Kelley
2019-02-25add a compile error note when C import fails and not linking libcAndrew Kelley
2019-02-22implement vector negationAndrew Kelley
2019-02-21better handling of arrays in packed structsAndrew Kelley
2019-02-20packed structs support comptime bitcastingAndrew Kelley
2019-02-20deduplicate compile errors for undeclared identifiersAndrew Kelley
2019-02-19Merge branch 'slice-deref-failure' of https://github.com/matthew-mcallister/z...Andrew Kelley
2019-02-19Prevent crash in tagged enums rendering (#1986)LemonBoy
2019-02-18add test for 74bdc1d1f898705Andrew Kelley
2019-02-17Check for duped error messages in compile testsMatthew McAllister
2019-02-17Deduplicate compile log statement warningsMatthew McAllister
2019-02-16Fix lvalue dereference type checkingMatthew McAllister
2019-02-15typecheck the panic functionAndrew Kelley
2019-02-15Merge pull request #1965 from ziglang/c-pointer-typeAndrew Kelley
2019-02-14translate-c: back to *c_void for opaque typesAndrew Kelley
2019-02-14allow C pointers to have alignmentAndrew Kelley
2019-02-14compile error for C pointer with align attributeAndrew Kelley
2019-02-14fix implicit cast error unions with non-optional to optional pointerAndrew Kelley
2019-02-14add missing compile error for OpaqueType inside structs/unionsAndrew Kelley
2019-02-14compile error tests for implicit C pointer castingAndrew Kelley
2019-02-14remove the "top of the comptime stack" compile errorAndrew Kelley
2019-02-14comptime detection of casting null to pointerAndrew Kelley
2019-02-13Added error for nesting vectorsJimmi Holst Christensen
2019-02-12C pointers: errors for nested pointer casting regarding nullAndrew Kelley
2019-02-12compile error test for casting integer to c pointerAndrew Kelley
2019-02-12disallow C pointers to non-C-ABI-compatible element typesAndrew Kelley
2019-02-09`@truncate`: comptime 0 when target type is 0 bitsAndrew Kelley
2019-02-08fix compiler assertion failure when returning value from testAndrew Kelley
2019-02-06thread local storage working for linux x86_64Andrew Kelley
2019-02-01Fix runtime assignment to comptime aggregate fieldMatthew McAllister
2019-02-01add compile errror for @bitCast when bit counts mismatchAndrew Kelley
2019-01-30fix test after merging ad8381e0d2936fAndrew Kelley
2019-01-30Move tokenizer error location to offending charMatthew McAllister
2019-01-29backport copy elision changesAndrew Kelley
2019-01-29simpler implementation of `&&` and `||` hintsAndrew Kelley
2019-01-25Hint at use of and/or when &&/|| is improperly used (#1886)kristopher tate
2019-01-20add test case for previous commitAndrew Kelley
2018-12-27Test cases for compiler error and working behavior for switching on booleansalexander
2018-12-12breaking API changes to all readInt/writeInt functions & moreAndrew Kelley
2018-12-05implement compile error note for function parameter type mismatchAndrew Kelley
2018-11-19Crash fixes and small improvements to inline asm. (#1756)Sahnvour
2018-11-19improve error message when wrong type returnedAndrew Kelley
2018-11-18all numbers with comptime known values implicitly castAndrew Kelley
2018-11-17rename `section` keyword to `linksection`Andrew Kelley
2018-11-13New Zig formal grammar (#1685)Jimmi Holst Christensen
2018-11-06limit integer types to maximum bit width of 65535Andrew Kelley
2018-10-26remove @minValue,@maxValue; add std.math.minInt,maxIntAndrew Kelley
2018-10-15Solve the return type ambiguity (#1628)Jimmi Holst Christensen