aboutsummaryrefslogtreecommitdiff
path: root/test/compile_errors.zig
AgeCommit message (Expand)Author
2019-08-27better handle struct depends on itself via optional fieldAndrew Kelley
2019-08-27fix not properly casting align valuesAndrew Kelley
2019-08-26fix more compile error regressionsAndrew Kelley
2019-08-26miscellaneous fixes regarding compile errorsAndrew Kelley
2019-08-26fix regression on struct field with undefined typeAndrew Kelley
2019-08-26fix some compile error regressionsAndrew Kelley
2019-08-20specify the target for the newest test caseAndrew Kelley
2019-08-20compiler error when variable in asm template cannot be foundTimon Kruiper
2019-08-17add compile error for async frames depending on themselvesAndrew Kelley
2019-08-17detect non-async function pointer of inferred async functionAndrew Kelley
2019-08-17add compile error for incorrect atomic ordering in fence #3082Vexu
2019-08-17fix compiler not checking alignment of function framesAndrew Kelley
2019-08-16add missing compile error for fn call bad implicit castAndrew Kelley
2019-08-16add compile error for casting const frame to anyframeAndrew Kelley
2019-08-16add tests for bad implicit casting of anyframe typesAndrew Kelley
2019-08-16add test for wrong frame type used for async callAndrew Kelley
2019-08-16add compile error for @Frame() of generic functionAndrew Kelley
2019-08-15fix error return traces for async calls of blocking functionsAndrew Kelley
2019-08-15remove `cancel`Andrew Kelley
2019-08-14add compile error for await in exported functionAndrew Kelley
2019-08-13Merge remote-tracking branch 'origin/master' into rewrite-coroutinesAndrew Kelley
2019-08-11all tests passingAndrew Kelley
2019-08-11allow comptime_int to implicit cast to comptime_floatAndrew Kelley
2019-08-08better compile errors when frame depends on itselfAndrew Kelley
2019-08-03implement `@asyncCall` which supports async function pointersAndrew Kelley
2019-08-03add compile error for calling async function pointerAndrew Kelley
2019-08-03add compile error for async call of function pointerAndrew Kelley
2019-08-02Merge remote-tracking branch 'origin/master' into rewrite-coroutinesAndrew Kelley
2019-08-02fix regressions regarding writing through const pointersAndrew Kelley
2019-07-23add error for function with ccc indirectly calling async functionAndrew Kelley
2019-07-19fix usingnamespaceAndrew Kelley
2019-07-16cleanupsAndrew Kelley
2019-07-16Merge branch 'main-return-!u8' of https://github.com/SamTebbs33/zig into SamT...Andrew Kelley
2019-07-04Unicode escapes: stage1 tokenizer and behavior testshryx
2019-07-04Support returning !u8 from mainSamTebbs33
2019-07-04improve the error message and test coverageAndrew Kelley
2019-07-03Merge branch 'impl-1107' of https://github.com/emekoi/zig into emekoi-impl-1107Andrew Kelley
2019-07-03added tests for #1107 and a note in the referenceemekoi
2019-07-02add missing compile error for comptime continue inside runtime catchAndrew Kelley
2019-07-02fixupsAndrew Kelley
2019-06-27compile error for using slice as array init expr typeAndrew Kelley
2019-06-25all compile error tests passingAndrew Kelley
2019-06-25fix several compile error test regressionsAndrew Kelley
2019-06-14fix `@export` for arrays and allow sections on extern variablesAndrew Kelley
2019-06-10Add check for null body in if, for and whileSamTebbs33
2019-06-09different array literal syntax when inferring the sizeAndrew Kelley
2019-05-30default struct field initialization expressionsAndrew Kelley
2019-05-29`use` works on unions and enums in addition to structsAndrew Kelley
2019-05-28no "use of undeclared identifer" in dead comptime branchesAndrew Kelley
2019-05-28Reject undefined as typeLemonBoy