rust/src/test/compile-fail
Alex Crichton 7755ffd013 Remove #[fixed_stack_segment] and #[rust_stack]
These two attributes are no longer useful now that Rust has decided to leave
segmented stacks behind. It is assumed that the rust task's stack is always
large enough to make an FFI call (due to the stack being very large).

There's always the case of stack overflow, however, to consider. This does not
change the behavior of stack overflow in Rust. This is still normally triggered
by the __morestack function and aborts the whole process.

C stack overflow will continue to corrupt the stack, however (as it did before
this commit as well). The future improvement of a guard page at the end of every
rust stack is still unimplemented and is intended to be the mechanism through
which we attempt to detect C stack overflow.

Closes #8822
Closes #10155
2013-11-11 10:40:34 -08:00
..
mod_file_disambig_aux syntax: Bless mod.rs. #4116 2013-07-21 19:32:24 -07:00
access-mode-in-closures.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
ambig-default-method.rs Correctly report errors for ambiguous default methods 2013-10-04 01:10:28 +09:00
ambig_impl_2_exe.rs Remove even more usage of clownshoes in symbols 2013-09-06 23:56:17 -07:00
ambig_impl_bounds.rs test: Fix tests. rs=tests 2013-03-13 20:08:35 -07:00
ambig_impl_unify.rs Improve name mangling for gdb 2013-09-04 23:28:23 -07:00
arc-cant-nest-rw-arc-3177.rs Un-xfail/move/delete some tests. 2013-09-03 20:00:41 +10:00
arc-rw-cond-shouldnt-escape.rs Change concurrency primitives to standard naming conventions 2013-07-27 22:06:29 -07:00
arc-rw-read-mode-shouldnt-escape.rs Updated std::Option, std::Either and std::Result 2013-08-05 22:42:21 +02:00
arc-rw-state-shouldnt-escape.rs Change concurrency primitives to standard naming conventions 2013-07-27 22:06:29 -07:00
arc-rw-write-mode-cond-shouldnt-escape.rs Change concurrency primitives to standard naming conventions 2013-07-27 22:06:29 -07:00
arc-rw-write-mode-shouldnt-escape.rs Updated std::Option, std::Either and std::Result 2013-08-05 22:42:21 +02:00
arg-count-mismatch.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
arg-type-mismatch.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
asm-gated.rs Activate checking code for ASM feature gate. Fix tests 2013-10-22 13:41:25 +02:00
asm-in-bad-modifier.rs fix some cfail test cases for arm 2013-11-06 15:45:37 +09:00
asm-out-assign-imm.rs fix some cfail test cases for arm 2013-11-06 15:45:37 +09:00
asm-out-no-modifier.rs fix some cfail test cases for arm 2013-11-06 15:45:37 +09:00
asm-out-read-uninit.rs fix some cfail test cases for arm 2013-11-06 15:45:37 +09:00
assign-imm-local-twice.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
assign-to-method.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
attempted-access-non-fatal.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
attr-bad-crate-attr.rc Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
attr-bad-meta.rs test: De-export aux, bench, compile-fail, and run-fail. rs=deexporting 2013-01-30 15:08:45 -08:00
attr-before-ext.rs Clean-up tests after debug!/std-macros change. 2013-07-17 03:10:13 +10:00
attr-before-let.rs detect unused attrs in one more place, allow parsing to continue for all 2013-05-20 11:49:20 -07:00
attr-before-stmt.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
attr-dangling-in-fn.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
attr-dangling-in-mod.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
attrs-after-extern-mod.rs rt: Move some test functions to rust_test_helpers 2013-08-23 18:38:59 -07:00
auto-ref-slice-plus-ref.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
autoderef-full-lval.rs register snapshots 2013-10-23 18:06:12 -04:00
bad-bang-ann-3.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
bad-bang-ann.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
bad-char-literals.rs Disallow char literals which should be escaped 2013-09-24 17:56:42 -07:00
bad-char-literals2.rs Disallow char literals which should be escaped 2013-09-24 17:56:42 -07:00
bad-char-literals3.rs Disallow char literals which should be escaped 2013-09-24 17:56:42 -07:00
bad-char-literals4.rs Disallow char literals which should be escaped 2013-09-24 17:56:42 -07:00
bad-const-type.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
bad-env-capture.rs Improve the attempted dynamic environment-capture error message 2013-07-02 01:05:57 +05:30
bad-env-capture2.rs Improve the attempted dynamic environment-capture error message 2013-07-02 01:05:57 +05:30
bad-env-capture3.rs Improve the attempted dynamic environment-capture error message 2013-07-02 01:05:57 +05:30
bad-expr-lhs.rs test: Add test for LHS expression check 2013-10-30 16:45:20 +09:00
bad-expr-path.rs more back-ticks, less colons 2013-05-10 23:34:20 +02:00
bad-expr-path2.rs more back-ticks, less colons 2013-05-10 23:34:20 +02:00
bad-main.rs Require extern "Rust" fn main() exactly 2013-07-09 16:56:16 -04:00
bad-match.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
bad-method-typaram-kind.rs librustc: Remove all uses of the Copy bound. 2013-07-17 14:57:53 -07:00
bad-mid-path-type-params.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
bad-module.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
bad-name.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
bad-type-env-capture.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
bad-value-ident-false.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
bad-value-ident-true.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
bang-tailexpr.rs Remove ret_style and instead check whether fn return type is bot 2013-01-08 14:21:06 -08:00
bind-by-move-neither-can-live-while-the-other-survives-1.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
bind-by-move-neither-can-live-while-the-other-survives-2.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
bind-by-move-neither-can-live-while-the-other-survives-3.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
bind-by-move-neither-can-live-while-the-other-survives-4.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
bind-by-move-no-guards.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
bind-by-move-no-sub-bindings.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
binop-bitxor-str.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
binop-logic-float.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
binop-logic-int.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
binop-mul-bool.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
binop-typeck.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
block-arg-as-stmt-with-value.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
block-coerce-no-2.rs librustc: Implement |A| -> B syntax for closures and make bare fn 2013-10-31 10:30:32 -07:00
block-coerce-no.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
block-must-not-have-result-do.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
block-must-not-have-result-res.rs switch Drop to &mut self 2013-09-16 22:19:23 -04:00
block-must-not-have-result-while.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
bogus-tag.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
borrowck-anon-fields-struct.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
borrowck-anon-fields-tuple.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
borrowck-anon-fields-variant.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-assign-comp-idx.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-assign-comp.rs Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freeze 2013-05-05 15:11:04 -04:00
borrowck-assign-to-andmut-in-aliasable-loc.rs Extend aliasability check to uncover & &mut &mut and the like 2013-08-27 15:45:19 -04:00
borrowck-assign-to-andmut-in-borrowed-loc.rs Prohibit assignment to &mut pointers that are found in frozen or borrowed locations. 2013-08-21 12:02:21 -04:00
borrowck-assign-to-constants.rs rustc: Check LHS expression of assignment 2013-10-30 16:45:20 +09:00
borrowck-assign-to-enum.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
borrowck-assign-to-subfield.rs register snapshots 2013-10-23 18:06:12 -04:00
borrowck-auto-mut-ref-to-immut-var.rs Remove std::io once and for all! 2013-10-24 14:22:34 -07:00
borrowck-autoref-3261.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-bad-nested-calls-free.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
borrowck-bad-nested-calls-move.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
borrowck-borrow-from-owned-ptr.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-borrow-from-stack-variable.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-borrow-mut-base-ptr-in-aliasable-loc.rs librustc: Remove &const and *const from the language. 2013-08-27 18:46:51 -07:00
borrowck-borrow-mut-object-twice.rs tests: Add new tests for borrowck/objects and update some existing tests 2013-08-11 14:01:23 -04:00
borrowck-borrowed-uniq-rvalue-2.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-borrowed-uniq-rvalue.rs librustc: Fix problem with cross-crate reexported static methods. 2013-08-27 18:47:59 -07:00
borrowck-call-method-from-mut-aliasable.rs librustc: Remove &const and *const from the language. 2013-08-27 18:46:51 -07:00
borrowck-call-sendfn.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
borrowck-imm-ref-to-mut-rec-field-issue-3162-c.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
borrowck-insert-during-each.rs remove obsolete foreach keyword 2013-08-03 22:48:02 -04:00
borrowck-issue-2657-1.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
borrowck-issue-2657-2.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
borrowck-lend-flow-if.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-lend-flow-loop.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-lend-flow-match.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-lend-flow.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-loan-blocks-move-cc.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-loan-blocks-move.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
borrowck-loan-blocks-mut-uniq.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
borrowck-loan-in-overloaded-op.rs correct incorrect handling of overloaded operators, exposing various other bits of rot 2013-05-01 08:49:48 -04:00
borrowck-loan-local-as-both-mut-and-imm.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-loan-rcvr-overloaded-op.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
borrowck-loan-rcvr.rs Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freeze 2013-05-05 15:11:04 -04:00
borrowck-loan-vec-content.rs librustc: Remove &const and *const from the language. 2013-08-27 18:46:51 -07:00
borrowck-move-by-capture.rs test: Fix rustdoc and tests. 2013-09-23 18:23:22 -07:00
borrowck-move-from-unsafe-ptr.rs tests/tutorials: Get rid of move. 2013-02-15 02:49:55 -08:00
borrowck-move-in-irrefut-pat.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
borrowck-move-moved-value-into-closure.rs Issue #7444 - Borrowck permits moved values to be captured 2013-07-17 07:19:43 -04:00
borrowck-move-mut-base-ptr.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
borrowck-move-out-of-struct-with-dtor.rs switch Drop to &mut self 2013-09-16 22:19:23 -04:00
borrowck-move-out-of-tuple-struct-with-dtor.rs switch Drop to &mut self 2013-09-16 22:19:23 -04:00
borrowck-move-out-of-vec-tail.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-mut-addr-of-imm-var.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-mut-boxed-vec.rs remove obsolete foreach keyword 2013-08-03 22:48:02 -04:00
borrowck-mut-deref-comp.rs register snapshots 2013-10-23 18:06:12 -04:00
borrowck-mut-slice-of-imm-vec.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
borrowck-no-cycle-in-exchange-heap.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
borrowck-object-lifetime.rs register snapshots 2013-10-23 18:06:12 -04:00
borrowck-object-mutability.rs register snapshots 2013-10-23 18:06:12 -04:00
borrowck-pat-reassign-binding.rs librustc: Remove all uses of "copy". 2013-07-17 14:57:51 -07:00
borrowck-reborrow-from-mut.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
borrowck-ref-into-rvalue.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-ref-mut-of-imm.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
borrowck-rvalues-mutable-bad.rs Add two tests for rvalue mutability 2013-05-16 15:10:50 -04:00
borrowck-struct-update-with-dtor.rs Resolves third bullet of #4691, and adds tests for it. Fix #4691. 2013-09-20 02:59:06 +02:00
borrowck-swap-mut-base-ptr.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
borrowck-unary-move.rs Move checking for moves and initialization of local variables and patterns into 2013-05-28 20:22:14 -04:00
borrowck-uniq-via-lend.rs librustc: Remove &const and *const from the language. 2013-08-27 18:46:51 -07:00
borrowck-vec-pattern-element-loan.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-vec-pattern-loan-from-mut.rs Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freeze 2013-05-05 15:11:04 -04:00
borrowck-vec-pattern-move-tail.rs Replace unreachable() calls with unreachable!(). 2013-09-19 15:04:03 +10:00
borrowck-vec-pattern-nesting.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-vec-pattern-tail-element-loan.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
borrowck-wg-borrow-mut-to-imm-fail-2.rs Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freeze 2013-05-05 15:11:04 -04:00
borrowck-wg-borrow-mut-to-imm-fail-3.rs Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freeze 2013-05-05 15:11:04 -04:00
borrowck-wg-borrow-mut-to-imm-fail.rs Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freeze 2013-05-05 15:11:04 -04:00
borrowck-wg-move-base-2.rs Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freeze 2013-05-05 15:11:04 -04:00
box-static-bound.rs register snapshots 2013-10-23 18:06:12 -04:00
break-outside-loop.rs Remove REC, change related tests/docs 2013-03-02 12:57:05 +09:00
builtin-superkinds-double-superkind.rs Fixup style of test cases for #7083 2013-08-20 13:28:51 -04:00
builtin-superkinds-in-metadata.rs oops, xfail-fast the cross-crate superkind tests 2013-08-21 15:52:31 -04:00
builtin-superkinds-self-type.rs oops v2, apparently writing std::comm::stream() doesn't work on check-fast; fix this 2013-08-21 20:33:56 -04:00
builtin-superkinds-simple.rs Fixup style of test cases for #7083 2013-08-20 13:28:51 -04:00
builtin-superkinds-typaram-not-send.rs Fixup style of test cases for #7083 2013-08-20 13:28:51 -04:00
by-move-pattern-binding.rs librustc: Remove all uses of "copy". 2013-07-17 14:57:51 -07:00
call-extern-trait-as-function.rs Add test for issue #6698 2013-06-03 13:09:26 +02:00
cant-implement-builtin-kinds.rs Prevent Send, Freeze, and Sized from being manually implemented. Close #8517. 2013-08-20 13:28:50 -04:00
capture1.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
cast-as-bool.rs forbid cast as bool 2013-09-04 23:09:51 -04:00
cast-from-nil.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
cast-immutable-mutable-trait.rs register snapshots 2013-10-23 18:06:12 -04:00
cast-to-nil.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
cast-vector-to-unsafe-nonstatic.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
circular_modules_hello.rs libsyntax: fix infinite loop when recursively including modules 2013-07-04 19:51:11 +02:00
circular_modules_main.rs libsyntax: fix infinite loop when recursively including modules 2013-07-04 19:51:11 +02:00
class-cast-to-trait.rs register snapshots 2013-10-23 18:06:12 -04:00
class-implements-bad-trait.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
class-method-missing.rs Move comparing of impl methods against trait from collect to check. 2013-11-08 19:45:49 -05:00
class-missing-self.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
closure-bounds-cant-promote-superkind-in-struct.rs test: Fix rustdoc and tests. 2013-09-23 18:23:22 -07:00
closure-bounds-not-builtin.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
closure-bounds-static-cant-capture-borrowed.rs Add basic test cases for closure bounds. (#3569) 2013-06-23 14:40:18 -04:00
closure-bounds-subtype.rs test: Fix tests. 2013-07-17 14:57:54 -07:00
closure-reform-bad.rs librustc: Implement |A| -> B syntax for closures and make bare fn 2013-10-31 10:30:32 -07:00
closure-that-fails.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
coherence_inherent.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
coherence_inherent_cc.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
concat.rs Implement a concat!() format extension 2013-10-31 13:46:10 -07:00
conflicting-implementations.rs Add backticks around trait name in conflicting implementations error message 2013-08-02 17:54:54 -04:00
const-cast-different-types.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
const-cast-wrong-type.rs librustc: Remove all uses of the old [T * N] fixed-length vector syntax 2013-03-26 21:29:34 -07:00
const-recursive.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
copy-a-resource.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
core-tls-store-pointer.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
crateresolve1.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
crateresolve2.rs test: De-export aux, bench, compile-fail, and run-fail. rs=deexporting 2013-01-30 15:08:45 -08:00
crateresolve5.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
dead-code-ret.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
deprecated-auto-code.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
deref-non-pointer.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
deriving-field-span-enum-struct-variant.rs syntax::ext: Make type errors in deriving point to the field itself. 2013-11-08 20:57:34 +11:00
deriving-field-span-enum.rs syntax::ext: Make type errors in deriving point to the field itself. 2013-11-08 20:57:34 +11:00
deriving-field-span-struct.rs syntax::ext: Make type errors in deriving point to the field itself. 2013-11-08 20:57:34 +11:00
deriving-field-span-tuple-struct.rs syntax::ext: Make type errors in deriving point to the field itself. 2013-11-08 20:57:34 +11:00
deriving-meta-unknown-trait.rs syntax: implement #[deriving] meta-attribute 2013-03-12 12:52:39 -04:00
deriving-primitive.rs Add appropriate #[feature] directives to tests 2013-10-06 14:39:25 -07:00
disallowed-deconstructing-destructing-struct-let.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
disallowed-deconstructing-destructing-struct-match.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
do-lambda-requires-braces.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
do1.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
do2.rs test: Fix rustdoc and tests. 2013-09-23 18:23:22 -07:00
does-nothing.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
drop-on-non-struct.rs register snapshots 2013-10-23 18:06:12 -04:00
dup-link-name.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
dup-struct-enum-struct-variant.rs Add appropriate #[feature] directives to tests 2013-10-06 14:39:25 -07:00
duplicate-visibility.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
elided-test.rs rustc: Only accept main functions at the crate level. #4433 2013-04-29 17:10:50 -07:00
empty-linkname.rs test: Fix tests. 2013-03-07 22:37:58 -08:00
empty-linkname2.rs test: Fix tests. 2013-03-07 22:37:58 -08:00
empty-vec-trailing-comma.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
enum-discrim-too-small.rs Add tests for enum discriminant sizing. 2013-10-29 09:09:20 -07:00
enum-in-scope.rs test: Remove newtype enums from the test suite. rs=deenum 2013-03-11 09:35:58 -07:00
enums-pats-not-idents.rs add test case for enum disambiguation 2013-04-28 23:01:41 -07:00
estr-subtyping.rs register snapshots 2013-10-23 18:06:12 -04:00
eval-enum.rs Revert rename of Div to Quot 2013-05-01 15:40:05 +10:00
evec-subtyping.rs register snapshots 2013-10-23 18:06:12 -04:00
explicit-call-to-dtor.rs switch Drop to &mut self 2013-09-16 22:19:23 -04:00
explicit-call-to-supertrait-dtor.rs switch Drop to &mut self 2013-09-16 22:19:23 -04:00
export-fully-qualified.rs test: De-export aux, bench, compile-fail, and run-fail. rs=deexporting 2013-01-30 15:08:45 -08:00
export-import.rs Fix existing privacy/visibility violations 2013-10-07 13:00:52 -07:00
export-tag-variant.rs Refine privacy error messages to be more accurate 2013-10-14 15:12:40 -07:00
export.rs test: De-export aux, bench, compile-fail, and run-fail. rs=deexporting 2013-01-30 15:08:45 -08:00
export2.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
ext-nonexistent.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
extenv-arg-2-not-string-literal.rs env! syntax extension changes 2013-08-08 10:35:42 -07:00
extenv-no-args.rs env! syntax extension changes 2013-08-08 10:35:42 -07:00
extenv-not-defined-custom.rs env! syntax extension changes 2013-08-08 10:35:42 -07:00
extenv-not-defined-default.rs env! syntax extension changes 2013-08-08 10:35:42 -07:00
extenv-not-string-literal.rs env! syntax extension changes 2013-08-08 10:35:42 -07:00
extenv-too-many-args.rs env! syntax extension changes 2013-08-08 10:35:42 -07:00
extern-main-fn.rs Require extern "Rust" fn main() exactly 2013-07-09 16:56:16 -04:00
extern-no-fn.rs Fix #6342 2013-05-22 16:11:48 +09:00
extern-wrong-value-type.rs Change type of extern fns from *u8 to extern "ABI" fn 2013-08-21 10:50:37 -04:00
extoption_env-no-args.rs env! syntax extension changes 2013-08-08 10:35:42 -07:00
extoption_env-not-string-literal.rs env! syntax extension changes 2013-08-08 10:35:42 -07:00
extoption_env-too-many-args.rs env! syntax extension changes 2013-08-08 10:35:42 -07:00
fail-simple.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
float-literal-inference-restrictions.rs remove the float type 2013-10-01 14:54:10 -04:00
fn-bad-block-type.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
fn-compare-mismatch.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
fn-variance-1.rs register snapshots 2013-10-23 18:06:12 -04:00
foreign-unsafe-fn-called.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
forget-init-unsafe.rs librustc: Redo the unsafe checker and make unsafe methods not callable from safe code 2013-05-29 19:04:50 -07:00
fully-qualified-type-name1.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
fully-qualified-type-name2.rs test: De-export aux, bench, compile-fail, and run-fail. rs=deexporting 2013-01-30 15:08:45 -08:00
fully-qualified-type-name3.rs xfail broken tests 2013-01-07 18:05:18 -08:00
fully-qualified-type-name4.rs std: Remove get_task function. Unused 2013-07-30 17:10:21 -07:00
functional-struct-update-noncopyable.rs Add appropriate #[feature] directives to tests 2013-10-06 14:39:25 -07:00
future_not_copyable.rs Modernize extra::future API 2013-09-19 15:19:20 -07:00
gated-bad-feature.rs Implement feature-gating for the compiler 2013-10-05 20:19:33 -07:00
gated-glob-imports.rs Implement feature-gating for the compiler 2013-10-05 20:19:33 -07:00
gated-macro-rules.rs Implement feature-gating for the compiler 2013-10-05 20:19:33 -07:00
gated-struct-enums.rs Implement feature-gating for the compiler 2013-10-05 20:19:33 -07:00
glob-resolve1.rs Fix merge fallout of privacy changes 2013-10-07 21:44:02 -07:00
if-branch-types.rs Correct handling of if/match, and make explicit computation of 2013-07-01 20:43:54 -04:00
if-typeck.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
if-without-else-result.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
ifmt-bad-arg.rs Try to improve format! error messages 2013-10-18 21:28:00 -07:00
ifmt-bad-format-args.rs Implement a format_args!() macro 2013-09-12 00:36:54 -07:00
ifmt-bad-format-args2.rs Implement a format_args!() macro 2013-09-12 00:36:54 -07:00
ifmt-bad-plural.rs Settle on the format/write/print family of names 2013-08-24 12:48:10 -07:00
ifmt-bad-select.rs Settle on the format/write/print family of names 2013-08-24 12:48:10 -07:00
ifmt-unimpl.rs Settle on the format/write/print family of names 2013-08-24 12:48:10 -07:00
ifmt-unknown-trait.rs Settle on the format/write/print family of names 2013-08-24 12:48:10 -07:00
immut-function-arguments.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
impl-bounds-checking.rs Add tests for some default method things. 2013-06-28 18:09:02 -07:00
impl-duplicate-methods.rs librustc: Fix merge fallout and test cases. 2013-06-28 10:44:17 -04:00
implicit-method-bind.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
import-from-missing.rs test: De-export aux, bench, compile-fail, and run-fail. rs=deexporting 2013-01-30 15:08:45 -08:00
import-from-path.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
import-from-rename.rs test: De-export aux, bench, compile-fail, and run-fail. rs=deexporting 2013-01-30 15:08:45 -08:00
import-glob-0.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
import-glob-circular.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
import-glob-path.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
import-glob-rename.rs test: De-export aux, bench, compile-fail, and run-fail. rs=deexporting 2013-01-30 15:08:45 -08:00
import-loop-2.rs test: De-export aux, bench, compile-fail, and run-fail. rs=deexporting 2013-01-30 15:08:45 -08:00
import-loop.rs test: De-export aux, bench, compile-fail, and run-fail. rs=deexporting 2013-01-30 15:08:45 -08:00
import.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
import2.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
import3.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
import4.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
index_message.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
infinite-instantiation.rs librustc: Remove all uses of "copy". 2013-07-17 14:57:51 -07:00
infinite-tag-type-recursion.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
infinite-vec-type-recursion.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
inner-static-type-parameter.rs Forbid type parameters in inner statics 2013-10-30 19:52:00 -07:00
integer-literal-suffix-inference.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
issue-511.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
issue-818.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-897-2.rs librustc: Change fold to use traits instead of @fn. 2013-09-23 18:23:17 -07:00
issue-897.rs test: Fix rustdoc and tests. 2013-09-23 18:23:22 -07:00
issue-1362.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
issue-1448-2.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-1451.rs test: Fix rustdoc and tests. 2013-09-23 18:23:22 -07:00
issue-1476.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-1655.rs test: De-export aux, bench, compile-fail, and run-fail. rs=deexporting 2013-01-30 15:08:45 -08:00
issue-1697.rs Add appropriate #[feature] directives to tests 2013-10-06 14:39:25 -07:00
issue-1802-1.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
issue-1802-2.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
issue-1871.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
issue-1900.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
issue-1962.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
issue-2063-resource.rs register snapshots 2013-10-23 18:06:12 -04:00
issue-2063.rs librustc: Lint the old drop destructor notation off 2013-03-11 09:36:00 -07:00
issue-2074.rs test: Fix rustdoc and tests. 2013-09-23 18:23:22 -07:00
issue-2111.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
issue-2123.rs Fix resolution tests 2013-05-14 20:34:12 -04:00
issue-2149.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-2150.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-2151.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-2281-part1.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-2330.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-2354-1.rs syntax: Display spans for open delimiters when a file ends prematurely 2013-10-07 18:06:30 -07:00
issue-2354.rs syntax: Display spans for open delimiters when a file ends prematurely 2013-10-07 18:06:30 -07:00
issue-2356.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
issue-2370-2.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-2370.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-2478.rs testsuite: Update test for #2478. Still xfailed 2013-05-21 12:58:27 -07:00
issue-2548.rs register snapshots 2013-10-23 18:06:12 -04:00
issue-2590.rs Move checking for moves and initialization of local variables and patterns into 2013-05-28 20:22:14 -04:00
issue-2611-4.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-2611-5.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-2718-a.rs librustc: Lint the old drop destructor notation off 2013-03-11 09:36:00 -07:00
issue-2823.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-2848.rs test: De-export aux, bench, compile-fail, and run-fail. rs=deexporting 2013-01-30 15:08:45 -08:00
issue-2849.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
issue-2937.rs Fix resolution tests 2013-05-14 20:34:12 -04:00
issue-2951.rs Un-xfail/move/delete some tests. 2013-09-03 20:00:41 +10:00
issue-2969.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
issue-2995.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
issue-3021-b.rs Improve the attempted dynamic environment-capture error message 2013-07-02 01:05:57 +05:30
issue-3021-c.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
issue-3021-d.rs Improve the attempted dynamic environment-capture error message 2013-07-02 01:05:57 +05:30
issue-3021.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-3036.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
issue-3038.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-3044.rs Fix fallout from span change 2013-07-05 14:56:54 +09:00
issue-3080.rs Un-xfail/move/delete some tests. 2013-09-03 20:00:41 +10:00
issue-3096-1.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
issue-3096-2.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
issue-3099-a.rs more back-ticks, less colons 2013-05-10 23:34:20 +02:00
issue-3099-b.rs resolve: report duplicate module definitions 2013-06-25 23:58:48 +05:30
issue-3099.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-3154.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
issue-3177-mutable-struct.rs librustc: Rename Const to Freeze 2013-06-28 10:44:15 -04:00
issue-3214.rs switch Drop to &mut self 2013-09-16 22:19:23 -04:00
issue-3243.rs librustc: Convert all uses of old lifetime notation to new lifetime notation. rs=delifetiming 2013-03-18 17:21:14 -07:00
issue-3344.rs Move comparing of impl methods against trait from collect to check. 2013-11-08 19:45:49 -05:00
issue-3477.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
issue-3521-2.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-3521.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-3563.rs tests: changes in response to #5656 2013-04-10 17:32:03 -07:00
issue-3601.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-3668-2.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
issue-3668.rs register snapshots 2013-10-23 18:06:12 -04:00
issue-3680.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
issue-3702-2.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
issue-3707.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
issue-3763.rs Fix fallout 2013-08-07 23:20:06 -04:00
issue-3820.rs Update the compiler to not use printf/printfln 2013-09-26 17:05:59 -07:00
issue-3907.rs Add a bunch of tests for closed issues 2013-08-13 21:32:34 -07:00
issue-3953.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
issue-3973.rs remove the float type 2013-10-01 14:54:10 -04:00
issue-3993-2.rs Fix existing privacy/visibility violations 2013-10-07 13:00:52 -07:00
issue-3993-3.rs Fix existing privacy/visibility violations 2013-10-07 13:00:52 -07:00
issue-3993.rs Fix existing privacy/visibility violations 2013-10-07 13:00:52 -07:00
issue-4265.rs more back-ticks, less colons 2013-05-10 23:34:20 +02:00
issue-4335.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
issue-4366-2.rs Fix merge fallout of privacy changes 2013-10-07 21:44:02 -07:00
issue-4366.rs Fix existing privacy/visibility violations 2013-10-07 13:00:52 -07:00
issue-4517.rs librustc: use new [ty, .. len] syntax for fixed vector errors. 2013-04-06 13:27:27 +11:00
issue-4523.rs Fix error messages in test cases, since fns/traits now pretty-print with a bounds list 2013-06-23 13:53:39 -04:00
issue-4542.rs librustc: Remove all uses of "copy". 2013-07-17 14:57:51 -07:00
issue-4736.rs #8263 part 2: Adding struct name. 2013-10-28 23:51:10 -07:00
issue-4935.rs Fix typos 2013-05-09 02:34:47 +09:00
issue-4968.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
issue-4972.rs Fix error messages in test cases, since fns/traits now pretty-print with a bounds list 2013-06-23 13:53:39 -04:00
issue-5035.rs testsuite: Add various test cases 2013-03-27 10:09:02 -07:00
issue-5060-fail.rs Remove even more of std::io 2013-10-24 14:21:57 -07:00
issue-5062.rs cfail: Remove usage of fmt! 2013-09-30 23:21:20 -07:00
issue-5099.rs librustc: Make self and static into keywords 2013-05-12 16:35:18 -07:00
issue-5100.rs remove obsolete foreach keyword 2013-08-03 22:48:02 -04:00
issue-5153.rs register snapshots 2013-10-23 18:06:12 -04:00
issue-5216.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
issue-5239-1.rs Add tests for ref in closure parameter list, closes #5239 2013-08-28 10:12:28 +02:00
issue-5358-1.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
issue-5358.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
issue-5439.rs cfail: Remove usage of fmt! 2013-09-30 23:21:20 -07:00
issue-5500-1.rs testsuite: Test cases, all except issue-5216 xfailed 2013-10-22 21:04:15 -07:00
issue-5500.rs testsuite: Test cases, all except issue-5216 xfailed 2013-10-22 21:04:15 -07:00
issue-5543.rs doc: convert remaining uses of core:: to std::. 2013-08-16 15:54:14 +10:00
issue-5544-a.rs libsyntax: fail lexing with an error message on an int literal larger than 2^64. 2013-04-08 16:40:40 +10:00
issue-5544-b.rs libsyntax: fail lexing with an error message on an int literal larger than 2^64. 2013-04-08 16:40:40 +10:00
issue-5844.rs Add a test for #5844 (a closed issue now) 2013-07-22 23:09:21 -07:00
issue-5883.rs Remove even more of std::io 2013-10-24 14:21:57 -07:00
issue-5927.rs fixed pattern, moved test to compile-fail 2013-04-30 16:31:56 -07:00
issue-6458-1.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
issue-6458-2.rs cfail: Remove usage of fmt! 2013-09-30 23:21:20 -07:00
issue-6458-3.rs testsuite: Tests for #6458. Closes #6458 2013-08-21 17:14:31 -07:00
issue-6458-4.rs testsuite: Tests for #6458. Closes #6458 2013-08-21 17:14:31 -07:00
issue-6458.rs testsuite: Tests for #6458. Closes #6458 2013-08-21 17:14:31 -07:00
issue-6596.rs Add appropriate #[feature] directives to tests 2013-10-06 14:39:25 -07:00
issue-6610.rs Fix error message when trait method ends with wrong token 2013-08-15 18:11:36 -07:00
issue-6642.rs Only bug on self-not-mapped-to-def if no previous errors were present. Close #6642. 2013-08-21 19:22:57 -04:00
issue-6702.rs rustc: More helpful error message when using a struct type like a function 2013-08-21 17:17:50 -07:00
issue-6762.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
issue-6804.rs Capitalize statics in f32 and f64 mods 2013-10-28 19:35:56 -07:00
issue-6977.rs Un-xfail/move/delete some tests. 2013-09-03 20:00:41 +10:00
issue-7013.rs clean up the Rc/RcMut types and move to libstd 2013-10-11 13:28:36 -04:00
issue-7044.rs Add test for #7044. 2013-06-10 18:06:56 -04:00
issue-7246.rs testsuite: Two tests for fixed bugs 2013-10-05 20:36:14 -04:00
issue-7573.rs Remove even more of std::io 2013-10-24 14:21:57 -07:00
issue-8615.rs Don't skip token after @'static 2013-08-19 14:55:35 -07:00
keyword-as-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-break-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-do-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-else-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-enum-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-extern-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-false-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-fn-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-for-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-if-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-impl-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-let-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-loop-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-match-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-mod-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-mut-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-priv-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-pub-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-ref-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-return-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-self-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-static-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-struct-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-super-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-super.rs Make super a keyword 2013-01-24 16:07:04 +09:00
keyword-trait-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-true-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-type-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-typeof.rs Parse and reserve typeof keyword. #3228 2013-08-23 17:24:14 -04:00
keyword-unsafe-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-use-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword-while-as-identifier.rs Add script and tests for using keywords as identifiers 2013-08-26 15:50:52 +02:00
keyword.rs test: De-export aux, bench, compile-fail, and run-fail. rs=deexporting 2013-01-30 15:08:45 -08:00
kindck-destructor-owned.rs register snapshots 2013-10-23 18:06:12 -04:00
kindck-freeze.rs Make TypeContents consider the type T to be reachable via *T pointers 2013-11-05 15:51:18 -05:00
kindck-implicit-close-over-mut-var.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
kindck-nonsendable-1.rs register snapshots 2013-10-23 18:06:12 -04:00
kindck-owned-trait-contains.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
kindck-owned-trait-scoped.rs librustc: Remove all uses of the Copy bound. 2013-07-17 14:57:53 -07:00
kindck-owned-trait.rs register snapshots 2013-10-23 18:06:12 -04:00
kindck-send.rs Make TypeContents consider the type T to be reachable via *T pointers 2013-11-05 15:51:18 -05:00
lex-bad-fp-lit.rs lexer: show correct span on lexical errors 2013-09-19 16:58:11 +02:00
lex-hex-float-lit.rs lexer: show correct span on lexical errors 2013-09-19 16:58:11 +02:00
lex-illegal-num-char-escape-2.rs lexer: show correct span on lexical errors 2013-09-19 16:58:11 +02:00
lex-illegal-num-char-escape.rs lexer: further slight improvements to lexer errors 2013-09-19 23:08:06 +02:00
lex-int-lit-too-large-2.rs lexer: show correct span on lexical errors 2013-09-19 16:58:11 +02:00
lex-int-lit-too-large.rs lexer: show correct span on lexical errors 2013-09-19 16:58:11 +02:00
lex-no-valid-digits-2.rs lexer: show correct span on lexical errors 2013-09-19 16:58:11 +02:00
lex-no-valid-digits.rs lexer: show correct span on lexical errors 2013-09-19 16:58:11 +02:00
lex-unknown-char-escape.rs lexer: show correct span on lexical errors 2013-09-19 16:58:11 +02:00
lex-unknown-start-tok.rs lexer: show correct span on lexical errors 2013-09-19 16:58:11 +02:00
lex-unknown-str-escape.rs lexer: show correct span on lexical errors 2013-09-19 16:58:11 +02:00
lex-unterminated-char-const.rs lexer: show correct span on lexical errors 2013-09-19 16:58:11 +02:00
lint-change-warnings.rs Add the warnings lint attribute 2013-06-25 08:55:15 -07:00
lint-ctypes-enum.rs Add tests for enum discriminant sizing. 2013-10-29 09:09:20 -07:00
lint-ctypes.rs Expand ctypes warnings to warn about *int/*uint 2013-07-11 19:45:25 -07:00
lint-heap-memory.rs register snapshots 2013-10-23 18:06:12 -04:00
lint-impl-fn.rs Re-implement lint with less emphasis on item ids 2013-05-17 00:49:16 -04:00
lint-managed-heap-memory.rs register snapshots 2013-10-23 18:06:12 -04:00
lint-missing-doc.rs fix missing_doc lint on private traits 2013-10-31 16:41:34 -05:00
lint-non-camel-case-types.rs Improve the camel case warning a bit. 2013-07-26 16:42:03 -07:00
lint-non-uppercase-statics.rs rustc: add a lint to enforce uppercase statics. 2013-07-01 17:52:57 +10:00
lint-output-format.rs Change default lint output format. 2013-10-09 00:14:35 -07:00
lint-owned-heap-memory.rs testsuite: Remove structural records from remaining compile-fail tests 2013-01-28 19:41:56 -08:00
lint-qualification.rs Add a compile-fail test for qualification lint 2013-07-11 12:54:06 +09:00
lint-stability.rs Add appropriate #[feature] directives to tests 2013-10-06 14:39:25 -07:00
lint-type-limits.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
lint-unused-import-tricky-globs.rs Add appropriate #[feature] directives to tests 2013-10-06 14:39:25 -07:00
lint-unused-import-tricky-names.rs remove the float type 2013-10-01 14:54:10 -04:00
lint-unused-imports.rs Remove even more of std::io 2013-10-24 14:21:57 -07:00
lint-unused-mut-variables.rs Test for mut in ident patterns. 2013-10-25 01:50:56 -04:00
lint-unused-unsafe.rs Remove #[fixed_stack_segment] and #[rust_stack] 2013-11-11 10:40:34 -08:00
liveness-and-init.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
liveness-assign-imm-local-in-loop.rs librustc: Remove all uses of "copy". 2013-07-17 14:57:51 -07:00
liveness-assign-imm-local-in-op-eq.rs librustc: Remove all uses of "copy". 2013-07-17 14:57:51 -07:00
liveness-assign-imm-local-with-init.rs librustc: Remove all uses of "copy". 2013-07-17 14:57:51 -07:00
liveness-bad-bang-2.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
liveness-block-unint.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
liveness-break-uninit-2.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
liveness-break-uninit.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
liveness-closure-require-ret.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
liveness-dead.rs librustc: Remove all uses of "copy". 2013-07-17 14:57:51 -07:00
liveness-forgot-ret.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
liveness-if-no-else.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
liveness-if-with-else.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
liveness-init-in-called-fn-expr.rs test: Fix rustdoc and tests. 2013-09-23 18:23:22 -07:00
liveness-init-in-fn-expr.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
liveness-init-in-fru.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
liveness-init-op-equal.rs librustc: Remove all uses of "copy". 2013-07-17 14:57:51 -07:00
liveness-init-plus-equal.rs librustc: Remove all uses of "copy". 2013-07-17 14:57:51 -07:00
liveness-issue-2163.rs remove each from vec, HashMap and HashSet 2013-06-25 16:28:02 -04:00
liveness-missing-ret2.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
liveness-move-call-arg.rs Finalize moves-based-on-type implementation. 2013-01-31 12:09:00 -08:00
liveness-move-in-loop.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
liveness-move-in-while.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
liveness-or-init.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
liveness-return.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
liveness-uninit-after-item.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
liveness-uninit.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
liveness-unused.rs librustc: Introduce a new visitor type based on traits and port syntax to it. 2013-08-02 21:57:58 -07:00
liveness-use-after-move.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
liveness-use-after-send.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
liveness-use-in-index-lvalue.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
liveness-while-break.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
liveness-while-cond.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
liveness-while.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
loop-as-continue.rs Obsolete parsing 'loop' as 'continue' 2013-10-01 15:52:41 -07:00
loop-does-not-diverge.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
lub-if.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
lub-in-args.rs register snapshots 2013-10-23 18:06:12 -04:00
lub-match.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
macro-incomplete-parse.rs Add appropriate #[feature] directives to tests 2013-10-06 14:39:25 -07:00
macro-inner-attributes.rs Add appropriate #[feature] directives to tests 2013-10-06 14:39:25 -07:00
macro-local-data-key-priv.rs Fix existing privacy/visibility violations 2013-10-07 13:00:52 -07:00
macro-outer-attributes.rs Add appropriate #[feature] directives to tests 2013-10-06 14:39:25 -07:00
macro-with-seps-err-msg.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
main-wrong-location.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
main-wrong-type-2.rs Require extern "Rust" fn main() exactly 2013-07-09 16:56:16 -04:00
main-wrong-type.rs Require extern "Rust" fn main() exactly 2013-07-09 16:56:16 -04:00
map-types.rs register snapshots 2013-10-23 18:06:12 -04:00
match-arrows-block-then-binop.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-ill-type1.rs fix issue #6209 2013-05-22 14:06:25 +09:00
match-ill-type2.rs fix issue #6209 2013-05-22 14:06:25 +09:00
match-join.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
match-non-exhaustive.rs Add non-exhaustive check for match guards 2013-02-26 22:20:02 +09:00
match-pattern-field-mismatch-2.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-pattern-field-mismatch.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-range-fail-dominate.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-range-fail.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-static-const-lc.rs fix tests for check-fast. 2013-10-01 18:02:11 +02:00
match-struct.rs Fix reversed current/expected type 2013-02-28 03:31:22 +09:00
match-tag-nullary.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-tag-unary.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-vec-fixed.rs Fix incorrect non-exhaustive matching for fixed length vecs 2013-08-07 22:07:24 +04:00
match-vec-invalid.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-vec-mismatch-2.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-vec-mismatch.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-vec-unreachable.rs Fix incorrect non-exhaustive matching for fixed length vecs 2013-08-07 22:07:24 +04:00
minus-string.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
missing-derivable-attr.rs Move comparing of impl methods against trait from collect to check. 2013-11-08 19:45:49 -05:00
missing-do.rs Fix error messages in test cases, since fns/traits now pretty-print with a bounds list 2013-06-23 13:53:39 -04:00
missing-main.rs rustc: Only accept main functions at the crate level. #4433 2013-04-29 17:10:50 -07:00
missing-return.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
mod_file_aux.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
mod_file_correct_spans.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
mod_file_disambig.rs syntax: Bless mod.rs. #4116 2013-07-21 19:32:24 -07:00
mod_file_disambig_aux.rs syntax: Bless mod.rs. #4116 2013-07-21 19:32:24 -07:00
mod_file_not_exist.rs syntax: Bless mod.rs. #4116 2013-07-21 19:32:24 -07:00
mod_file_with_path_attr.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
moves-based-on-type-access-to-field.rs Move checking for moves and initialization of local variables and patterns into 2013-05-28 20:22:14 -04:00
moves-based-on-type-block-bad.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
moves-based-on-type-capture-clause-bad.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
moves-based-on-type-cyclic-types-issue-4821.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
moves-based-on-type-distribute-copy-over-paren.rs librustc: Remove all uses of "copy". 2013-07-17 14:57:51 -07:00
moves-based-on-type-exprs.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
moves-based-on-type-match-bindings.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
moves-based-on-type-move-out-of-closure-env-issue-1965.rs replace range with an external iterator 2013-08-02 00:51:14 -04:00
moves-based-on-type-no-recursive-stack-closure.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
moves-based-on-type-tuple.rs Fix filenames of some compile-fail tests. 2013-07-01 15:54:54 -04:00
moves-sru-moved-field.rs Make ~fn non-copyable, make &fn copyable, split barefn/closure types, 2013-02-07 05:53:30 -08:00
multiline-comment-line-tracking.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
multiple-main-2.rs allowing the entry point name to be something other than main 2013-01-14 13:58:13 -08:00
multiple-main-3.rs allowing the entry point name to be something other than main 2013-01-14 13:58:13 -08:00
multitrait.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
mut-patterns.rs Test for mut in ident patterns. 2013-10-25 01:50:56 -04:00
mutable-class-fields-2.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
mutable-class-fields.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
mutable-enum-indirect.rs Refactor TypeContents to be more scrutable. In particular, create coarser bits 2013-11-05 14:50:35 -05:00
mutex-arc-nested.rs Fixed docs and styles 2013-09-04 02:28:16 +02:00
name-clash-nullary-2.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
name-clash-nullary.rs Add appropriate #[feature] directives to tests 2013-10-06 14:39:25 -07:00
nested-ty-params.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
no-binary-float-literal.rs remove the float type 2013-10-01 14:54:10 -04:00
no-capture-arc.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
no-hex-float-literal.rs got rid of last empty lines 2013-02-06 17:43:14 +09:00
no-implicit-prelude-nested.rs rustc: implement a #[no_implicit_prelude] attribute. 2013-07-17 15:01:02 +10:00
no-implicit-prelude.rs rustc: implement a #[no_implicit_prelude] attribute. 2013-07-17 15:01:02 +10:00
no-oct-float-literal.rs Added octal literal support. 2013-11-02 21:26:29 -07:00
no-reuse-move-arc.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
no-send-res-ports.rs register snapshots 2013-10-23 18:06:12 -04:00
no-unsafe-self.rs Emit a better error for attempted unsafe-pointer-self. Close #8306. 2013-08-23 17:24:15 -04:00
no_freeze-enum.rs correct names for #[no_send]/#[no_freeze] tests 2013-10-11 12:21:19 -04:00
no_freeze-rc.rs add from_send to Rc, since #9509 is fixed 2013-11-07 02:30:54 -05:00
no_freeze-struct.rs correct names for #[no_send]/#[no_freeze] tests 2013-10-11 12:21:19 -04:00
no_send-enum.rs correct names for #[no_send]/#[no_freeze] tests 2013-10-11 12:21:19 -04:00
no_send-rc.rs clean up the Rc/RcMut types and move to libstd 2013-10-11 13:28:36 -04:00
no_send-struct.rs correct names for #[no_send]/#[no_freeze] tests 2013-10-11 12:21:19 -04:00
noexporttypeexe.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
nolink-with-link-args.rs librustc: Remove "extern mod { ... }" from librustc, librustdoc, and tests. rs=deexterning 2013-03-07 22:32:52 -08:00
non-constant-expr-for-fixed-len-vec.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
non-constant-expr-for-vec-repeat.rs Add tests for const exprs in fixed vec length type and vec repeat. 2013-03-18 17:31:42 -07:00
non-copyable-void.rs librustc: Remove all uses of "copy". 2013-07-17 14:57:51 -07:00
non-exhaustive-match-nested.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
non-exhaustive-match.rs Add support for destructuring vectors in match expressions 2012-12-17 16:50:40 -08:00
non-str-meta.rs syntax: Forbid non-string literals in meta items. #623 2013-10-30 14:06:22 -07:00
noncopyable-class.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
nonscalar-cast.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
not-a-pred.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
not-enough-arguments.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
not-utf8.bin Reject non-UTF-8 files when reading as str. Close #2918. 2012-07-25 15:34:18 -07:00
not-utf8.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
object-does-not-impl-trait.rs register snapshots 2013-10-23 18:06:12 -04:00
object-pointer-types.rs register snapshots 2013-10-23 18:06:12 -04:00
obsolete-syntax.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
occurs-check-3.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
occurs-check.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
omitted-arg-in-item-fn.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
omitted-arg-wrong-types.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
once-cant-call-twice-on-heap.rs Removed the -Z once_fns compiler flag and added the new feature directive of the same name to replace it. 2013-10-17 06:22:48 +02:00
once-cant-call-twice-on-stack.rs Removed the -Z once_fns compiler flag and added the new feature directive of the same name to replace it. 2013-10-17 06:22:48 +02:00
once-cant-move-out-of-non-once-on-heap.rs Change concurrency primitives to standard naming conventions 2013-07-27 22:06:29 -07:00
once-cant-move-out-of-non-once-on-stack.rs Change concurrency primitives to standard naming conventions 2013-07-27 22:06:29 -07:00
once-fn-subtyping.rs Removed the -Z once_fns compiler flag and added the new feature directive of the same name to replace it. 2013-10-17 06:22:48 +02:00
or-patter-mismatch.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
output-type-mismatch.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
oversized-literal.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
packed-struct-generic-transmute.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
packed-struct-transmute.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
pat-ref-enum.rs Fix Option camel case in a compile-fail test 2013-01-25 19:42:24 -07:00
pat-shadow-in-nested-binding.rs test: Remove newtype enums from the test suite. rs=deenum 2013-03-11 09:35:58 -07:00
pattern-error-continue.rs rustc: Eliminate a derived error in check::_match 2013-08-14 13:42:58 -07:00
pattern-tyvar-2.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
pattern-tyvar.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
pinned-deep-copy.rs register snapshots 2013-10-23 18:06:12 -04:00
pptypedef.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
prim-with-args.rs remove the float type 2013-10-01 14:54:10 -04:00
priv-in-bad-locations.rs Correctly encode item visibility in metadata 2013-09-24 09:57:25 -07:00
privacy1.rs Refine privacy error messages to be more accurate 2013-10-14 15:12:40 -07:00
privacy2.rs Fix merge fallout of privacy changes 2013-10-07 21:44:02 -07:00
privacy3.rs Fix merge fallout of privacy changes 2013-10-07 21:44:02 -07:00
privacy4.rs Fix merge fallout of privacy changes 2013-10-07 21:44:02 -07:00
private-impl-method.rs Fix fallout 2013-08-07 23:20:06 -04:00
private-item-simple.rs Fix existing privacy/visibility violations 2013-10-07 13:00:52 -07:00
private-method-cross-crate.rs Add appropriate #[feature] directives to tests 2013-10-06 14:39:25 -07:00
private-method-inherited.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
private-method.rs Fix fallout 2013-08-07 23:20:06 -04:00
private-struct-field-cross-crate.rs Add appropriate #[feature] directives to tests 2013-10-06 14:39:25 -07:00
private-struct-field-ctor.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
private-struct-field-pattern.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
private-struct-field.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
private-variant-xc.rs librustc: Fix problem with cross-crate reexported static methods. 2013-08-27 18:47:59 -07:00
private-variant.rs Fix existing privacy/visibility violations 2013-10-07 13:00:52 -07:00
private_variant_2.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
qquote-1.rs quote_*! macros take an ExtCtx 2013-08-18 13:14:15 -04:00
qquote-2.rs quote_*! macros take an ExtCtx 2013-08-18 13:14:15 -04:00
raw-str-delim.rs lex raw string literals, like r#"blah"# 2013-10-08 01:44:05 +02:00
raw-str-unbalanced.rs lex raw string literals, like r#"blah"# 2013-10-08 01:44:05 +02:00
raw-str-unterminated.rs lex raw string literals, like r#"blah"# 2013-10-08 01:44:05 +02:00
rcmut-not-const-and-not-owned.rs clean up the Rc/RcMut types and move to libstd 2013-10-11 13:28:36 -04:00
recursive-enum.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
redundant-link-args.rs test: Fix tests. 2013-03-07 22:37:58 -08:00
refutable-pattern-in-fn-arg.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
regionck-closure-lifetimes.rs replace all remaining for with foreach or do 2013-08-03 03:00:42 -04:00
regions-addr-of-arg.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
regions-addr-of-self.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
regions-addr-of-upvar-self.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
regions-bounds.rs librustc: Ensure that type parameters are in the right positions in paths. 2013-08-27 18:47:57 -07:00
regions-creating-enums.rs 'Borrow' stack closures rather than copying them (e.g., "|x|f(x)"), in prep for making them noncopyable. 2013-06-29 04:39:34 -04:00
regions-creating-enums3.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
regions-creating-enums4.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
regions-escape-bound-fn-2.rs Defer reasoning about region relationships until after regionck. 2013-07-01 20:43:54 -04:00
regions-escape-bound-fn.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
regions-escape-loop-via-variable.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
regions-escape-loop-via-vec.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
regions-escape-via-trait-or-not.rs Defer reasoning about region relationships until after regionck. 2013-07-01 20:43:54 -04:00
regions-fn-bound.rs libsyntax: Stop parsing old lifetimes, except for the ones on data type declarations. 2013-03-18 17:21:15 -07:00
regions-fn-subtyping.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
regions-fns.rs test: Fix rustdoc and tests. 2013-09-23 18:23:22 -07:00
regions-free-region-ordering-callee.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
regions-free-region-ordering-caller.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
regions-free-region-ordering-caller1.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
regions-free-region-ordering-incorrect.rs Add copyright notice and kill broken test 2013-07-01 20:43:55 -04:00
regions-freevar.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
regions-glb-free-free.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
regions-in-consts.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
regions-in-enums-anon.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
regions-in-enums.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
regions-in-structs-anon.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
regions-in-structs.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
regions-infer-at-fn-not-param.rs test: Fix rustdoc and tests. 2013-09-23 18:23:22 -07:00
regions-infer-borrow-scope-too-big.rs register snapshots 2013-10-23 18:06:12 -04:00
regions-infer-borrow-scope-within-loop.rs register snapshots 2013-10-23 18:06:12 -04:00
regions-infer-call-3.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
regions-infer-invariance-due-to-mutability-3.rs register snapshots 2013-10-23 18:06:12 -04:00
regions-infer-invariance-due-to-mutability-4.rs register snapshots 2013-10-23 18:06:12 -04:00
regions-infer-not-param.rs test: Fix rustdoc and tests. 2013-09-23 18:23:22 -07:00
regions-infer-paramd-indirect.rs register snapshots 2013-10-23 18:06:12 -04:00
regions-infer-paramd-method.rs test: Fix tests. rs=tests 2013-03-13 20:08:35 -07:00
regions-infer-region-in-fn-but-not-type.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
regions-name-duplicated.rs Create a new pass to resolve named lifetimes; rscope is not only 2013-11-08 16:52:36 -05:00
regions-name-static.rs Create a new pass to resolve named lifetimes; rscope is not only 2013-11-08 16:52:36 -05:00
regions-name-undeclared.rs Create a new pass to resolve named lifetimes; rscope is not only 2013-11-08 16:52:36 -05:00
regions-nested-fns-2.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
regions-nested-fns.rs Defer reasoning about region relationships until after regionck. 2013-07-01 20:43:54 -04:00
regions-out-of-scope-slice.rs librustc: Convert all uses of old lifetime notation to new lifetime notation. rs=delifetiming 2013-03-18 17:21:14 -07:00
regions-ref-in-fn-arg.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
regions-ret-borrowed-1.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
regions-ret-borrowed.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
regions-ret.rs Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freeze 2013-05-05 15:11:04 -04:00
regions-steal-closure.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
regions-trait-1.rs register snapshots 2013-10-23 18:06:12 -04:00
regions-trait-2.rs Reason about nested free variables that appear in a function 2013-04-10 07:52:46 -07:00
regions-trait-3.rs test: Add lifetime binders and new-style lifetime parameters to the test suite 2013-03-22 22:24:36 -07:00
regions-undeclared.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
regions-var-type-out-of-scope.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
regions-variance-contravariant-use-covariant-in-second-position.rs Add new tests showing multiple lifetime parameters in use 2013-11-08 19:47:57 -05:00
regions-variance-contravariant-use-covariant.rs Add new tests showing multiple lifetime parameters in use 2013-11-08 19:47:57 -05:00
regions-variance-covariant-use-contravariant.rs Address comments from @pnkfelix (thanks for the detailed review) 2013-11-08 19:47:57 -05:00
regions-variance-invariant-use-contravariant.rs Fix pretty printer when there are multiple lifetime parameters 2013-11-08 22:25:22 -05:00
regions-variance-invariant-use-covariant.rs Address comments from @pnkfelix (thanks for the detailed review) 2013-11-08 19:47:57 -05:00
removed-syntax-class-traits.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-closure-lifetime.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-const-item.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-enum-newtype.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-extern-const.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-field-let.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-field-semicolon.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-fixed-vec.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-fn-pure.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-fn-sigil.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-larrow-init.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-larrow-move.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-mode.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-mut-vec-expr.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-mut-vec-ty.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-priv-group.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-ptr-lifetime.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-record.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-static-fn.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-uniq-mut-expr.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-uniq-mut-ty.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-uniq-self.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-with-1.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
removed-syntax-with-2.rs Remove specific errors for very old obsolete syntax 2013-10-04 07:09:28 +02:00
repeat-to-run-dtor-twice.rs switch Drop to &mut self 2013-09-16 22:19:23 -04:00
repeat_count.rs Report error for non constant vector repeat count 2013-02-25 00:21:03 +09:00
required-lang-item.rs Renumber the lang items correctly 2013-09-18 09:09:54 -07:00
reserved-be.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
resolve-inconsistent-binding-mode.rs librustc: Remove &const and *const from the language. 2013-08-27 18:46:51 -07:00
resolve-inconsistent-names.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
resolve-unknown-trait.rs Address @catamorphism's error message grammar nit. 2013-07-03 23:43:03 +01:00
ret-non-nil.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
return-in-block-function.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
selftype-traittype.rs register snapshots 2013-10-23 18:06:12 -04:00
seq-args.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
simd-type.rs Add SIMD vector type tests 2013-05-07 23:35:33 +09:00
spawn-non-nil-fn.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
static-assert.rs rustc: add a lint to enforce uppercase statics. 2013-07-01 17:52:57 +10:00
static-assert2.rs rustc: add a lint to enforce uppercase statics. 2013-07-01 17:52:57 +10:00
static-method-privacy.rs librustc: Ensure that type parameters are in the right positions in paths. 2013-08-27 18:47:57 -07:00
static-mut-bad-types.rs Add 'static mut' items to the language 2013-06-23 17:59:35 -07:00
static-mut-foreign-requires-unsafe.rs Support foreign 'static mut' variables as well 2013-06-23 18:00:32 -07:00
static-mut-not-constant.rs Add 'static mut' items to the language 2013-06-23 17:59:35 -07:00
static-mut-not-pat.rs Add 'static mut' items to the language 2013-06-23 17:59:35 -07:00
static-mut-requires-unsafe.rs Add 'static mut' items to the language 2013-06-23 17:59:35 -07:00
static-priv-by-default.rs Use __morestack to detect stack overflow 2013-10-19 09:43:31 -07:00
static-priv-by-default2.rs Fix existing privacy/visibility violations 2013-10-07 13:00:52 -07:00
static-region-bound.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
static-vec-repeat-not-constant.rs Add test for repeat expr in statics. 2013-08-13 20:57:05 -04:00
staticness-mismatch.rs tests: changes in response to #5656 2013-04-10 17:32:03 -07:00
std-uncopyable-atomics.rs std: Make atomic types non-copyable. Closes #8380 2013-11-07 18:37:56 -08:00
struct-base-wrong-type.rs Add support for ..base on static struct initializers. 2013-07-28 22:07:27 -04:00
struct-fields-decl-dupe.rs Fixes #7377 2013-06-30 09:41:21 +09:00
struct-fields-dupe.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
struct-fields-missing.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
struct-fields-too-many.rs #8263 part 2: Adding struct name. 2013-10-28 23:51:10 -07:00
struct-like-enum-nonexhaustive.rs Add appropriate #[feature] directives to tests 2013-10-06 14:39:25 -07:00
struct-no-fields-2.rs Add parse-error recovery for erroneous struct_id { } form. 2013-08-09 18:32:46 +02:00
struct-no-fields-3.rs Add parse-error recovery for erroneous struct_id { } form. 2013-08-09 18:32:46 +02:00
struct-no-fields-4.rs Add parse-error recovery for erroneous struct_id { } form. 2013-08-09 18:32:46 +02:00
struct-no-fields-5.rs Add parse-error recovery for erroneous struct_id { } form. 2013-08-09 18:32:46 +02:00
struct-no-fields.rs Add parse-error recovery for erroneous struct_id { } form. 2013-08-09 18:32:46 +02:00
struct-pat-derived-error.rs rustc: Eliminate a derived error in check::_match 2013-08-14 13:42:58 -07:00
struct-variant-privacy.rs Check unnecessary visibility for struct variants 2013-10-18 22:44:11 -07:00
super-at-top-level.rs Fix resolution tests 2013-05-14 20:34:12 -04:00
suppressed-error.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
sync-cond-shouldnt-escape.rs Change concurrency primitives to standard naming conventions 2013-07-27 22:06:29 -07:00
sync-rwlock-cond-shouldnt-escape.rs Change concurrency primitives to standard naming conventions 2013-07-27 22:06:29 -07:00
sync-rwlock-read-mode-shouldnt-escape.rs Change concurrency primitives to standard naming conventions 2013-07-27 22:06:29 -07:00
sync-rwlock-write-mode-cond-shouldnt-escape.rs Change concurrency primitives to standard naming conventions 2013-07-27 22:06:29 -07:00
sync-rwlock-write-mode-shouldnt-escape.rs Change concurrency primitives to standard naming conventions 2013-07-27 22:06:29 -07:00
syntax-extension-bytes-non-ascii-char-literal.rs Made bytes!() accept a list of string, integer or char literals 2013-05-18 00:26:04 +02:00
syntax-extension-bytes-non-literal.rs Made bytes!() accept a list of string, integer or char literals 2013-05-18 00:26:04 +02:00
syntax-extension-bytes-too-large-integer-literal.rs Made bytes!() accept a list of string, integer or char literals 2013-05-18 00:26:04 +02:00
syntax-extension-bytes-too-large-u8-literal.rs Made bytes!() accept a list of string, integer or char literals 2013-05-18 00:26:04 +02:00
syntax-extension-bytes-too-small-integer-literal.rs Made bytes!() accept a list of string, integer or char literals 2013-05-18 00:26:04 +02:00
syntax-extension-bytes-too-small-u8-literal.rs Made bytes!() accept a list of string, integer or char literals 2013-05-18 00:26:04 +02:00
syntax-extension-bytes-unsupported-literal.rs remove the float type 2013-10-01 14:54:10 -04:00
tag-that-dare-not-speak-its-name.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
tag-type-args.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
tag-variant-cast-non-nullary.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
tag-variant-disr-dup.rs Check repr attribute consistency at check time, not translation. 2013-10-29 09:09:20 -07:00
tag-variant-disr-non-nullary.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
tail-typeck.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
terr-in-field.rs test: Fix tests. 2013-03-07 22:37:58 -08:00
terr-sorts.rs register snapshots 2013-10-23 18:06:12 -04:00
test-cfg.rs more back-ticks, less colons 2013-05-10 23:34:20 +02:00
trait-bounds-cant-coerce.rs test: Fix tests. 2013-07-17 14:57:54 -07:00
trait-bounds-not-on-bare-trait.rs librustc: Fix merge fallout and test cases. 2013-06-28 10:44:17 -04:00
trait-bounds-not-on-impl.rs Add tests for not-kind-checked trait bounds. 2013-06-23 14:40:18 -04:00
trait-bounds-not-on-struct.rs librustc: Fix merge fallout and test cases. 2013-06-28 10:44:17 -04:00
trait-bounds-sugar.rs register snapshots 2013-10-23 18:06:12 -04:00
trait-duplicate-methods.rs librustc: Fix merge fallout and test cases. 2013-06-28 10:44:17 -04:00
trait-impl-can-not-have-untraitful-methods.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
trait-impl-different-num-params.rs Update various tests and libraries that were incorrectly 2013-11-08 19:45:50 -05:00
trait-impl-method-mismatch.rs register snapshots 2013-10-23 18:06:12 -04:00
trait-inheritance-missing-requirement.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
trait-keyword.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
trait-or-new-type-instead.rs librustc: Fix merge fallout and test cases. 2013-06-28 10:44:17 -04:00
trait-test-2.rs register snapshots 2013-10-23 18:06:12 -04:00
trait-test.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
tuple-arity-mismatch.rs remove the float type 2013-10-01 14:54:10 -04:00
tuple-struct-nonexhaustive.rs Update the compiler to not use printf/printfln 2013-09-26 17:05:59 -07:00
tutorial-suffix-inference-test.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
type-arg-out-of-scope.rs librustc: Replace all uses of fn() with &fn(). rs=defun 2013-03-11 09:35:58 -07:00
type-mismatch-multiple.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
type-mismatch.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
type-parameter-names.rs rustdoc: Change all code-blocks with a script 2013-09-25 14:27:42 -07:00
type-recursive.rs test: Fix tests. 2013-03-07 22:37:58 -08:00
type-shadow.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
unbalanced-doublequote.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
unconstrained-none.rs cfail: Remove usage of fmt! 2013-09-30 23:21:20 -07:00
unconstrained-ref.rs Add a test that causes an ICE currently 2013-06-08 09:34:25 +02:00
uninhabited-enum-cast.rs librustc: Make uninhabited enums not castable to int 2013-05-02 18:41:57 -07:00
unique-object-noncopyable.rs switch Drop to &mut self 2013-09-16 22:19:23 -04:00
unique-pinned-nocopy.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
unique-unique-kind.rs librustc: Change "Owned" to "Send" everywhere 2013-06-28 10:44:15 -04:00
unique-vec-res.rs register snapshots 2013-10-23 18:06:12 -04:00
unop-neg-bool.rs Let type_is_integral return false for bool type 2013-02-04 23:01:47 +09:00
unreachable-arm.rs register snapshots 2013-10-23 18:06:12 -04:00
unreachable-code.rs Promote unreachable code to being a lint attribute 2013-05-30 20:45:13 -05:00
unresolved-extern-mod-suggestion.rs rustc: adjust span for error message to not trim last letter 2013-06-01 00:39:02 +10:00
unresolved-import.rs Add span to some import resolution errors 2013-05-14 18:52:31 -04:00
unsafe-fn-assign-deref-ptr.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
unsafe-fn-autoderef.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
unsafe-fn-called-from-safe.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
unsafe-fn-deref-ptr.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
unsafe-fn-used-as-value.rs Remove ancient emacs mode lines from test cases 2013-10-25 17:41:54 -07:00
unsafe-modifying-str.rs Forbid modifications of strings in the compiler 2013-10-09 10:34:35 -07:00
unsendable-class.rs register snapshots 2013-10-23 18:06:12 -04:00
unsized-bare-typaram.rs Add simple tests for Sized 2013-05-30 21:41:41 -04:00
unsized-enum.rs Add simple tests for Sized 2013-05-30 21:41:41 -04:00
unsized-struct.rs Add simple tests for Sized 2013-05-30 21:41:41 -04:00
unsupported-cast.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
use-after-move-based-on-type.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
use-after-move-self-based-on-type.rs switch Drop to &mut self 2013-09-16 22:19:23 -04:00
use-after-move-self.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
use-from-trait-xc.rs automated whitespace fixes 2013-06-13 18:03:08 -04:00
use-from-trait.rs automated whitespace fixes 2013-06-13 18:03:08 -04:00
use-meta-dup.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
use-meta-mismatch.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
use-meta.rc Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
useless-priv.rs Forbid pub/priv where it has no effect 2013-08-12 23:20:46 -07:00
useless-priv2.rs Correctly encode item visibility in metadata 2013-09-24 09:57:25 -07:00
variadic-ffi-1.rs Add tests for variadic foreign functions. 2013-11-04 23:53:11 -05:00
variadic-ffi-2.rs Add tests for variadic foreign functions. 2013-11-04 23:53:11 -05:00
variadic-ffi-3.rs Add tests for variadic foreign functions. 2013-11-04 23:53:11 -05:00
variadic-ffi-4.rs Add tests for variadic foreign functions. 2013-11-04 23:53:11 -05:00
variadic-ffi.rs Remove #[fixed_stack_segment] and #[rust_stack] 2013-11-11 10:40:34 -08:00
variance-regions-direct.rs Introduce new variance inference pass that replaces (and generalizes) old 2013-11-08 19:43:20 -05:00
variance-regions-indirect.rs Introduce new variance inference pass that replaces (and generalizes) old 2013-11-08 19:43:20 -05:00
vec-add.rs libcore: Change [const T] to const [T] everywhere 2013-03-26 21:29:33 -07:00
vec-field.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
vec-mut-iter-borrow.rs remove obsolete foreach keyword 2013-08-03 22:48:02 -04:00
vec-res-add.rs Drop the '2' suffix from logging macros 2013-10-22 08:09:56 -07:00
vector-no-ann.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
view-items-at-top.rs Un-xfail/move/delete some tests. 2013-09-03 20:00:41 +10:00
vtable-res-trait-param.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
warn-foreign-int-types.rs Issue #3678: Remove wrappers and call foreign functions directly 2013-08-19 07:13:15 -04:00
warn-path-statement.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
while-type-error.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
writing-to-immutable-vec.rs new borrow checker (mass squash) 2013-04-30 06:59:32 -04:00
wrong-ret-type.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
xc-private-method.rs Fix existing privacy/visibility violations 2013-10-07 13:00:52 -07:00
xc-private-method2.rs Correctly encode item visibility in metadata 2013-09-24 09:57:25 -07:00
xcrate-private-by-default.rs Use __morestack to detect stack overflow 2013-10-19 09:43:31 -07:00
xcrate-unit-struct.rs Fix unit structs in cross-crate situtations 2013-08-07 22:41:13 -04:00