Merge remote-tracking branch 'origin/master' into pending

This commit is contained in:
John Wiegley 2018-08-05 12:20:24 -04:00
commit c3e3e27ee3
No known key found for this signature in database
GPG key ID: C144D8F4F19FE630

View file

@ -143,6 +143,34 @@ case_inherit_from_set_has_no_scope =
)).success
|]
-- github/orblivion (2018-08-05): Adding these failing tests so we fix this feature
-- case_overrides =
-- constantEqualText' "2" [i|
-- let
--
-- overrides = { a = 2; };
--
-- in (rec {
-- __overrides = overrides;
-- x = a;
-- a = 1;
-- }.__overrides.a)
-- |]
-- case_inherit_overrides =
-- constantEqualText' "2" [i|
-- let
--
-- __overrides = { a = 2; };
--
-- in (rec {
-- inherit __overrides;
-- x = a;
-- a = 1;
-- }.__overrides.a)
-- |]
case_unsafegetattrpos1 =
constantEqualText "[ 6 20 ]" [i|
let e = 1;