aboutsummaryrefslogtreecommitdiff
path: root/test/compile_errors.zig
AgeCommit message (Expand)Author
2018-01-07fix struct inside function referencing local constAndrew Kelley
2017-12-22explicitly return from blocksAndrew Kelley
2017-12-20add labeled loops, labeled break, labeled continue. remove gotoAndrew Kelley
2017-12-19fix assert when wrapping zero bit type in nullableAndrew Kelley
2017-12-19bring back code that uses export and fix testsAndrew Kelley
2017-12-18wip export rewriteAndrew Kelley
2017-12-05add implicit cast from enum to unionAndrew Kelley
2017-12-05fix casting integer literal to enumAndrew Kelley
2017-12-04more tests for unionsAndrew Kelley
2017-12-04fix abi alignment of union-enums not counting tag typeAndrew Kelley
2017-12-03rework enums and unions and their relationship to each otherAndrew Kelley
2017-12-02ability to set tag values of enumsAndrew Kelley
2017-12-02casting between integer and enum only works via tag typeAndrew Kelley
2017-11-30ability to specify tag type of enumsAndrew Kelley
2017-11-25fix crash when constant inside comptime function has compile errorAndrew Kelley
2017-11-15basic union supportAndrew Kelley
2017-11-09fix parameter of extern var args not type checkedAndrew Kelley
2017-11-06add @memberType and @memberName builtin functionsAndrew Kelley
2017-11-04add compile-time reflection for function arg typesAndrew Kelley
2017-10-26Improve invalid character error messages (#566)Marc Tiehuis
2017-10-25fix crash on field access of opaque typeAndrew Kelley
2017-10-23add maximum value for @setAlignStackAndrew Kelley
2017-10-15fix windows argument parsingAndrew Kelley
2017-10-06fix compiler crash when invalid value usedAndrew Kelley
2017-10-03add @setAlignStack builtinAndrew Kelley
2017-09-28Allow 128-bit hex float literalsMarc Tiehuis
2017-09-17add test for struct with invalid fieldAndrew Kelley
2017-09-10fix not verifying GlobalLinkage and AtomicOrder typesAndrew Kelley
2017-09-09more compile errors for non-const variables of thingsAndrew Kelley
2017-09-05add OpaqueType builtinAndrew Kelley
2017-08-31setEvalBranchQuota must be called from top of comptime stackAndrew Kelley
2017-08-31allow array literals to have size and fix comptime bugAndrew Kelley
2017-08-30align syntax: align(4) instead of align 4Andrew Kelley
2017-08-30compile error for not-aligned-enough pointer to cmpxchgAndrew Kelley
2017-08-30add tests for function alignment handlingAndrew Kelley
2017-08-29more alignment improvementsAndrew Kelley
2017-08-29fix testsAndrew Kelley
2017-08-29ptrCast gives compile error for increasing alignmentAndrew Kelley
2017-08-29prevent implicitly increasing pointer alignmentAndrew Kelley
2017-08-29introduce align keywordAndrew Kelley
2017-08-19add compile error for globally shadowing a primitive typeAndrew Kelley
2017-08-19bit shifting safetyAndrew Kelley
2017-08-09more intuitive left shift and right shift operatorsAndrew Kelley
2017-08-08add ptrToInt builtin, remove usize(ptr) castAndrew Kelley
2017-08-07add ability to explicitly cast float to integerAndrew Kelley
2017-08-07Correct floating-point literal allowed rangesMarc Tiehuis
2017-08-05fix initializing undefined and crash when casting to invalid typeAndrew Kelley
2017-06-14progress toward windows hello world workingAndrew Kelley
2017-06-03compileError builtin includes "referenced by" notesAndrew Kelley
2017-05-26fix segfault with array of generic functionsAndrew Kelley