aboutsummaryrefslogtreecommitdiff
path: root/test/compile_errors.zig
AgeCommit message (Expand)Author
2019-05-11Support signed types as enum tagsLemonBoy
2019-05-10add test case for previous commitAndrew Kelley
2019-05-10stage1: compile error for loop expr val ignoredMichael Dusan
2019-05-10Fixes and simplifications for stage 1 parserJimmi HC
2019-05-09compile error for attempt to cast enum literal to errorAndrew Kelley
2019-05-08C pointers support `null`Andrew Kelley
2019-04-24`@sizeOf` returns 0 for comptime typesAndrew Kelley
2019-04-07test/compile_errors.zig: add regression test for ziglang/zig#532 ;kristopher tate
2019-03-31added error for implicit cast from *const T to *[1]T. credit: @kristateemekoi
2019-03-28stage1: better error message when comparing against nullShawn Landden
2019-03-25implement allowzero pointer attributeAndrew Kelley
2019-03-24add compile error test for invalid enum literal implicit castAndrew Kelley
2019-03-24make switch expressions allow enum literal typesAndrew Kelley
2019-03-23add compile error for ignoring errorAndrew Kelley
2019-03-22float literals now parse using musl's 128 bit float codeAndrew Kelley
2019-03-23Fix compile-error test case for large integer typeMarc Tiehuis
2019-03-20add docs for assembly and fix global assembly parsingAndrew Kelley
2019-03-16add regression test for invalid multiple dereferencesAndrew Kelley
2019-03-16add compile error for wrong type with `use`Andrew Kelley
2019-03-15fix while continue block not checking for ignored expressionAndrew Kelley
2019-03-02compile error for import outside package pathAndrew Kelley
2019-03-01@typeInfo for structs and opaque types is the bare nameAndrew Kelley
2019-03-01fix dependency loops, pub, tests, use decls, root sourceAndrew Kelley
2019-02-28remove namespace type; files are empty structsAndrew Kelley
2019-02-26add test coverage for type used as switch caseAndrew Kelley
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