summary refs log tree commit diff
path: root/src/test/ui/consts/const-eval
AgeCommit message (Expand)AuthorLines
2018-12-04Update testsOliver Scherer-0/+1
2018-11-26Auto merge of #56070 - oli-obk:const_let, r=eddybbors-15/+77
2018-11-20Explain missing error in testOliver Scherer-1/+4
2018-11-19we now do proper validation on scalarsRalf Jung-13/+13
2018-11-19Make const_eval_raw query return just an AllocIdRalf Jung-16/+22
2018-11-19Also catch static mutation at evaluation timeOliver Scherer-17/+45
2018-11-19Rollup merge of #56059 - alexcrichton:fix-tests, r=sfacklerkennytm-0/+27
2018-11-19Allow assignments in const contextsOliver Scherer-16/+47
2018-11-18Auto merge of #55672 - RalfJung:miri-extern-types, r=eddybbors-0/+27
2018-11-15do not accept out-of-bounds pointers in enum discriminants, they might be NULLRalf Jung-6/+19
2018-11-15validation: better error when the enum discriminant is UndefRalf Jung-13/+13
2018-11-13Auto merge of #55589 - oli-obk:min_length_💣, r=pnkfelixbors-1/+1
2018-11-12miri-engine value visitor update to VariantIdxOliver Scherer-1/+1
2018-11-10adjust ui/../mod-static-with-const-fn.rsMazdak Farrokhzad-3/+15
2018-11-10fix mod-static-with-const-fn.rs.Mazdak Farrokhzad-3/+1
2018-11-10--bless mod-static-with-const-fn.stderrMazdak Farrokhzad-9/+2
2018-11-10constify parts of libcore.Mazdak Farrokhzad-2/+0
2018-11-07test diagnostics for more rangesRalf Jung-2/+32
2018-11-07pretty-print scalar range that only has an upper boundRalf Jung-7/+7
2018-11-07do not print wrapping ranges like normal ranges in diagnosticsRalf Jung-22/+47
2018-11-05the visitor can already load the value for visit_primitiveRalf Jung-1/+1
2018-11-05Also test for undef in enum discriminantRalf Jung-3/+16
2018-11-05fix validation error on non-integer enum discriminantsRalf Jung-33/+42
2018-11-05reduce the amount of traversal/projection code that the visitor has to implem...Ralf Jung-2/+2
2018-11-04also test with PhantomDataRalf Jung-3/+9
2018-11-04miri: accept extern types in structs if they are the only fieldRalf Jung-0/+21
2018-11-01Fix double_check tests on big-endian targetsSamuel Holland-10/+10
2018-10-29Add UI test for #49296memoryruins-0/+35
2018-10-26Auto merge of #55382 - kennytm:rollup, r=kennytmbors-0/+17
2018-10-26Rollup merge of #54816 - oli-obk:double_promotion, r=alexregkennytm-0/+17
2018-10-25Rebase falloutOliver Schneider-184/+57
2018-10-25add the lint back to the list, and fix testsRalf Jung-201/+60
2018-10-25fix ui tests (rebase fallout)Ralf Jung-0/+1
2018-10-25Addressed minor issues brought up in review.Alexander Regueiro-8/+5
2018-10-25Rebase fallout in ui outputOliver Schneider-22/+11
2018-10-25update tests to changes on rustc masterOliver Schneider-46/+64
2018-10-25Deduplicate all the ~~things~~ errorsOliver Schneider-98/+52
2018-10-25Report const eval error inside the queryOliver Schneider-472/+737
2018-10-21Use new region infer errors for explaining borrowsMatthew Jasper-36/+36
2018-10-19skip user-type annotations if they don't have regionsNiko Matsakis-19/+4
2018-10-19lowering casts in constants now creates multiple usesNiko Matsakis-6/+21
2018-10-16Check the type of statics and constants for `Sized`nessOliver Scherer-10/+7
2018-10-13validation: accept pointers in integer arraysRalf Jung-1/+12
2018-10-13Fix and test upvar name printing for validityRalf Jung-0/+36
2018-10-09unify handling of thin and fat pointers by moving primitive type handling out...Ralf Jung-8/+19
2018-10-09add some tests with constants that better be validRalf Jung-0/+18
2018-10-09move a test to a better placeRalf Jung-0/+254
2018-10-09also validate everything that has a Scalar layout, to catch NonNullRalf Jung-4/+56
2018-10-09fix validating arrays of ZSTsRalf Jung-14/+23
2018-10-09switch validation of scalars to be type-drivenRalf Jung-32/+50