about summary refs log tree commit diff
path: root/src/test/compile-fail/issue-3763.rs
AgeCommit message (Collapse)AuthorLines
2018-07-15Move some `compile-fail` tests to `ui`Esteban Küber-36/+0
2017-01-31Removes FIXMEs related to #22405Wesley Wiser-2/+0
2015-03-03Switched to Box::new in many places.Felix S. Klock II-4/+7
Many of the modifications putting in `Box::new` calls also include a pointer to Issue 22405, which tracks going back to `box <expr>` if possible in the future. (Still tried to use `Box<_>` where it sufficed; thus some tests still have `box_syntax` enabled, as they use a mix of `box` and `Box::new`.) Precursor for overloaded-`box` and placement-`in`; see Issue 22181.
2015-01-08Update compile fail tests to use isize.Huon Wilson-1/+1
2015-01-07Test fixes and rebase conflictsAlex Crichton-0/+1
2014-10-02tests: remove uses of Gc.Eduard Burtescu-5/+0
2014-07-26Remove managed_box gate from testsBrian Anderson-1/+0
No longer does anything.
2014-06-14rustc: Obsolete the `@` syntax entirelyAlex Crichton-2/+4
This removes all remnants of `@` pointers from rustc. Additionally, this removes the `GC` structure from the prelude as it seems odd exporting an experimental type in the prelude by default. Closes #14193 [breaking-change]
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-2/+2
for `~str`/`~[]`. Note that `~self` still remains, since I forgot to add support for `Box<self>` before the snapshot. How to update your code: * Instead of `~EXPR`, you should write `box EXPR`. * Instead of `~TYPE`, you should write `Box<Type>`. * Instead of `~PATTERN`, you should write `box PATTERN`. [breaking-change]
2014-04-06name struct in "field `...` is private" errorBenjamin Herr-4/+8
2014-03-31rpass/cfail: Update field privacy where necessaryAlex Crichton-1/+1
2014-03-28Convert most code to new inner attribute syntax.Brian Anderson-1/+1
Closes #2569
2013-12-12Gate literal box expressions in addition to typesAlex Crichton-0/+2
Closes #10920
2013-08-07Fix falloutCorey Richardson-1/+1
2013-06-01Remove all uses of `pub impl`. rs=stylePatrick Walton-1/+1
2013-03-13librustc: Remove implicit self from the language, except for old-style drop ↵Patrick Walton-1/+1
blocks.
2013-02-28librustc: Mark all type implementations public. rs=impl-publicityPatrick Walton-1/+1
2012-12-11Auto-deref when checking field and method privacyTim Chevalier-5/+10
This disallows using pointers to sneak around priv qualifiers. Deeming this too small for review as well. Closes #3763
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-12-06Test cases, some xfailedTim Chevalier-0/+17