rust/src/test/run-pass
bors 881a7cd86e Auto merge of #49836 - nikomatsakis:nll-facts-prep, r=pnkfelix
prep work for using timely dataflow with NLL

Two major changes:

**Two-phase borrows are overhauled.** We no longer have two bits per borrow. Instead, we track -- for each borrow -- an (optional) "activation point". Then, for each point P where the borrow is in scope, we check where P falls relative to the activation point. If P is between the reservation point and the activation point, then this is the "reservation" phase of the borrow, else the borrow is considered active. This is simpler and means that the dataflow doesn't have to care about 2-phase at all, at last not yet.

**We no longer support using the MIR borrow checker without NLL.** It is going to be increasingly untenable to support lexical mode as we go forward, I think, and also of increasingly little value. This also exposed a few bugs in NLL mode due to increased testing.

r? @pnkfelix
cc @bobtwinkles
2018-04-17 14:23:57 +00:00
..
allocator Replace remaining uses of deprecated std::heap with std::alloc 2018-04-14 16:47:38 +09:00
auxiliary Implementation of #[repr(packed(n))] RFC 1399. 2018-04-11 22:13:13 +10:00
bench Improve time complexity of equality relations 2016-03-21 22:40:30 +01:00
borrowck remove -Znll -- borrowck=mir implies nll now 2018-04-15 07:13:42 -04:00
closure-expected-type new rules for merging expected/supplied types in closure signatures 2017-11-02 17:47:17 -04:00
ctfe Fix the conversion between bit representations and i128 representations 2018-03-22 12:38:40 +01:00
foreign-mod-src Add compiletest-ignore-dir to existing subdirectories. 2016-02-24 18:40:39 -05:00
foreign-src Add compiletest-ignore-dir to existing subdirectories. 2016-02-24 18:40:39 -05:00
generator Stabilize conservative_impl_trait 2018-03-26 10:43:03 +02:00
hygiene Auto merge of #48082 - jseyfried:improve_struct_field_hygiene, r=petrochenkov 2018-02-26 09:41:33 +00:00
impl-trait remove -Znll -- borrowck=mir implies nll now 2018-04-15 07:13:42 -04:00
import-crate-with-invalid-spans Make fields of Span private 2017-08-30 01:38:54 +03:00
issue-37291 add #32791 test case 2016-11-02 18:18:24 -04:00
issue24687-embed-debuginfo s/aux/auxiliary, because windows 2016-05-06 16:24:48 -04:00
issue_26873_multifile Add compiletest-ignore-dir to existing subdirectories. 2016-02-24 18:40:39 -05:00
mir-inlining Normalize inlined function in MIR inliner 2017-11-10 20:54:58 +09:00
mod_dir_implicit_aux Add compiletest-ignore-dir to existing subdirectories. 2016-02-24 18:40:39 -05:00
mod_dir_simple Add compiletest-ignore-dir to existing subdirectories. 2016-02-24 18:40:39 -05:00
module-polymorphism3-files Add compiletest-ignore-dir to existing subdirectories. 2016-02-24 18:40:39 -05:00
nll Stabilize match_default_bindings 2018-03-28 11:13:13 +02:00
non_modrs_mods Treat #[path] files as mod.rs files 2018-01-09 10:54:13 -08:00
panic-runtime Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
rfc-1937-termination-trait Fix ICE with main's return type containing lifetimes 2018-04-06 00:39:36 +09:00
rfc-2005-default-binding-mode Stabilize match_default_bindings 2018-03-28 11:13:13 +02:00
rfc-2008-non-exhaustive Ignoring pretty print for test due to #37199 2017-11-04 18:01:35 +00:00
rfc-2126-crate-paths Resolve absolute paths as extern under a feature flag 2017-12-13 00:02:23 +03:00
rfc-2126-extern-absolute-paths Rollup merge of #48441 - petrochenkov:exty, r=estebank 2018-02-24 15:52:13 -08:00
rfc-2151-raw-identifiers Fix pretty-printing for raw identifiers 2018-03-27 00:07:16 +03:00
rfc-2175-or-if-while-let Implement multiple patterns with | in if let and while let 2018-02-24 03:12:35 +03:00
rfc1445 new tests for RFC #1445 2016-03-25 06:45:43 -04:00
rfc1717 std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
specialization add Self: Trait<..> inside the param_env of a default impl 2018-02-15 15:31:05 +00:00
syntax-extension-source-utils-files
thinlto rustc: Add -C lto=val option 2018-01-23 14:13:47 -08:00
union Implementation of #[repr(packed(n))] RFC 1399. 2018-04-11 22:13:13 +10:00
.gitattributes
abi-sysv64-arg-passing.rs Stabilize abi_sysv64 2017-12-06 01:19:35 +01:00
abi-sysv64-register-usage.rs Add trailing newlines to files which have no trailing newlines. 2017-12-30 15:50:52 +08:00
abort-on-c-abi.rs add unwind_attributes feature 2018-02-21 20:39:01 -05:00
alias-uninit-value.rs
align-offset-sign.rs Fix the wrong subtraction in align_offset intrinsic. 2017-12-18 22:52:24 +08:00
align-struct.rs Implementation of #[repr(packed(n))] RFC 1399. 2018-04-11 22:13:13 +10:00
align-with-extern-c-fn.rs rustc_trans: ignore trailing padding larger than 8 bytes. 2018-01-16 18:04:24 +02:00
alignment-gep-tup-like-1.rs
alloca-from-derived-tydesc.rs
allocator-alloc-one.rs Replace remaining uses of deprecated Heap with Global 2018-04-14 16:48:27 +09:00
anon-extern-mod-cross-crate-2.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
anon-extern-mod.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
anon-trait-static-method.rs
anon_trait_static_method_exe.rs
arbitrary_self_types_raw_pointer_struct.rs Add tests with *const Rc<Self> and similar self types 2017-12-17 10:13:09 +01:00
arbitrary_self_types_raw_pointer_trait.rs better variable names in tests 2017-12-17 10:13:09 +01:00
arbitrary_self_types_silly.rs add run-pass tests 2017-11-09 11:42:41 -05:00
arbitrary_self_types_struct.rs add run-pass tests 2017-11-09 11:42:41 -05:00
arbitrary_self_types_trait.rs add run-pass tests 2017-11-09 11:42:41 -05:00
arbitrary_self_types_unsized_struct.rs add run-pass tests 2017-11-09 11:42:41 -05:00
argument-passing.rs
arith-0.rs
arith-1.rs
arith-2.rs
arith-unsigned.rs
arr_cycle.rs Remove #[derive(Show)] 2015-10-18 19:12:09 +03:00
array_const_index-1.rs add feature gate const_indexing 2015-11-20 10:43:04 +01:00
artificial-block.rs
as-precedence.rs
asm-concat-src.rs test: Update Emscripten failures/passing 2017-10-17 18:46:38 -07:00
asm-in-moved.rs Give MIR borrowck a better understanding of inline asm 2017-12-23 23:45:07 +00:00
asm-in-out-operand.rs
asm-indirect-memory.rs Add proper support for indirect output constraints in inline asm 2015-12-05 08:18:30 +00:00
asm-out-assign.rs Give MIR borrowck a better understanding of inline asm 2017-12-23 23:45:07 +00:00
assert-eq-macro-success.rs Add message argument to assert_eq macro 2016-06-21 15:14:15 +09:00
assert-eq-macro-unsized.rs Add test for assert_eq! with none Sized types 2015-11-11 22:08:20 +00:00
assert-eq-trailing-comma.rs Allow a trailing comma in assert_eq/ne macro 2017-11-09 14:14:49 +01:00
assert-escape.rs Escape stringified expression 2018-03-14 18:11:42 +09:00
assert-ne-macro-success.rs add assert_ne and debug_assert_ne macros 2016-09-21 14:38:26 +02:00
assert-ne-macro-unsized.rs add assert_ne and debug_assert_ne macros 2016-09-21 14:38:26 +02:00
assert-ne-trailing-comma.rs Allow a trailing comma in assert_eq/ne macro 2017-11-09 14:14:49 +01:00
assign-assign.rs
assignability-trait.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
assoc-oddities-3.rs Added a functioning version of the assoc-oddities-3 test case to 2015-12-17 22:14:50 +01:00
associated-const-const-eval.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-cross-crate-const-eval.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-cross-crate-defaults.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-cross-crate.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-in-global-const.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-inherent-impl.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-marks-live-code.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-match-patterns.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-outer-ty-refs.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-overwrite-default.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-public-impl.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-range-match-patterns.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-resolution-order.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-self-type.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-type-parameters.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-ufcs-infer-trait.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-use-default.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const-use-impl-of-same-trait.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-const.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
associated-item-long-paths.rs
associated-types-basic.rs
associated-types-binding-in-trait.rs
associated-types-binding-in-where-clause.rs
associated-types-bound.rs
associated-types-cc.rs
associated-types-conditional-dispatch.rs
associated-types-constant-type.rs
associated-types-doubleendediterator-object.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
associated-types-duplicate-binding-in-env-hrtb.rs
associated-types-duplicate-binding-in-env.rs
associated-types-enum-field-named.rs
associated-types-enum-field-numbered.rs
associated-types-eq-obj.rs
associated-types-impl-redirect.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
associated-types-in-bound-type-arg.rs re-introduce a cache for ast-ty-to-ty 2016-05-12 14:23:26 -04:00
associated-types-in-default-method.rs
associated-types-in-fn.rs
associated-types-in-impl-generics.rs
associated-types-in-inherent-method.rs
associated-types-issue-20220.rs
associated-types-issue-20371.rs
associated-types-issue-21212.rs
associated-types-iterator-binding.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
associated-types-method.rs
associated-types-nested-projections.rs
associated-types-normalize-in-bounds-binding.rs
associated-types-normalize-in-bounds-ufcs.rs
associated-types-normalize-in-bounds.rs
associated-types-normalize-unifield-struct.rs rustc: Implement custom derive (macros 1.1) 2016-09-02 12:52:56 -07:00
associated-types-project-from-type-param-via-bound-in-where.rs Stabilize const-calling existing const-fns in std 2017-11-26 23:43:44 +01:00
associated-types-projection-bound-in-supertraits.rs
associated-types-projection-from-known-type-in-impl.rs
associated-types-projection-in-object-type.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
associated-types-projection-in-supertrait.rs
associated-types-projection-in-where-clause.rs
associated-types-projection-to-unrelated-trait.rs Fallout in tests -- break test into a run-pass and compile-fail component 2015-08-12 17:58:56 -04:00
associated-types-qualified-path-with-trait-with-type-parameters.rs
associated-types-ref-from-struct.rs
associated-types-ref-in-struct-literal.rs
associated-types-region-erasure-issue-20582.rs
associated-types-resolve-lifetime.rs
associated-types-return.rs
associated-types-simple.rs
associated-types-stream.rs
associated-types-struct-field-named.rs
associated-types-struct-field-numbered.rs
associated-types-sugar-path.rs rustc_typeck: enforce argument type is sized 2017-06-28 17:54:18 +00:00
associated-types-where-clause-impl-ambiguity.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
astconv-cycle-between-trait-and-type.rs
atomic-access-bool.rs Add a test to check that AtomicBool has the proper representation 2016-08-17 15:34:43 +01:00
atomic-compare_exchange.rs Change compare_exchange to return a Result<T, T> 2016-03-19 11:44:38 +00:00
atomic-print.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
attr-before-view-item.rs Fix compiletest so it respects warnings for run-pass. 2016-08-22 16:51:37 -07:00
attr-before-view-item2.rs Fix compiletest so it respects warnings for run-pass. 2016-08-22 16:51:37 -07:00
attr-main-2.rs
attr-main.rs
attr-mix-new.rs
attr-on-generic-formals.rs Stabilize attributes on generic parameters 2018-04-05 02:19:56 +03:00
attr-shebang.rs
attr-start.rs
attr.rs
augmented-assignments-feature-gate-cross.rs std: Stabilize APIs for the 1.8 release 2016-02-29 09:05:33 -08:00
augmented-assignments-feature-gate.rs std: Stabilize APIs for the 1.8 release 2016-02-29 09:05:33 -08:00
augmented-assignments-trait.rs std: Stabilize APIs for the 1.8 release 2016-02-29 09:05:33 -08:00
augmented-assignments.rs Do not trigger unused_assignments for overloaded AssignOps 2016-03-04 21:07:11 +01:00
auto-instantiate.rs
auto-is-contextual.rs Parse auto traits the same as traits. 2017-11-03 16:13:22 -02:00
auto-loop.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
auto-ref-bounded-ty-param.rs
auto-ref-sliceable.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
auto-ref.rs
auto-traits.rs Parse auto trait inside fns. 2018-01-13 18:49:28 +03:00
autobind.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
autoderef-and-borrow-method-receiver.rs
autoderef-method-on-trait.rs Remove the deprecated box(PLACE) syntax. 2015-09-24 18:00:08 +03:00
autoderef-method-priority.rs
autoderef-method-twice-but-not-thrice.rs
autoderef-method-twice.rs
autoderef-method.rs
autoderef-privacy.rs Improve tests 2016-03-30 21:26:35 +00:00
autoref-intermediate-types-issue-3585.rs
backtrace-debuginfo-aux.rs Print inlined functions on Windows 2018-01-26 04:49:54 +01:00
backtrace-debuginfo.rs rustc: Upgrade to LLVM 6 2018-02-09 17:13:14 -08:00
backtrace.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
bare-fn-implements-fn-mut.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
bare-static-string.rs
big-literals.rs Fix overflowing_literals lint for large f32s 2017-07-19 03:22:45 +01:00
binary-minus-without-space.rs
bind-by-move.rs
bind-field-short-with-modifiers.rs
binops-issue-22743.rs
binops.rs
bitwise.rs Simplify some uses of cfg in test cases 2016-01-13 01:39:01 +00:00
blind-item-local-shadow.rs Resolve: stop requiring that use declarations precede statements in blocks 2016-01-23 08:05:57 +00:00
blind-item-mixed-crate-use-item.rs
blind-item-mixed-use-item.rs
block-arg-call-as.rs
block-arg.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
block-explicit-types.rs
block-expr-precedence.rs
block-fn-coerce.rs
block-iter-1.rs
block-iter-2.rs
bool-not.rs
bool.rs
borrow-by-val-method-receiver.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
borrow-tuple-fields.rs
borrowed-ptr-pattern-2.rs
borrowed-ptr-pattern-3.rs
borrowed-ptr-pattern-infallible.rs
borrowed-ptr-pattern-option.rs
borrowed-ptr-pattern.rs
box-new.rs
box-of-array-of-drop-1.rs Stabilize const-calling existing const-fns in std 2017-11-26 23:43:44 +01:00
box-of-array-of-drop-2.rs Stabilize const-calling existing const-fns in std 2017-11-26 23:43:44 +01:00
break-value.rs
break.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
bug-7183-generics.rs
bug-7295.rs
builtin-clone-unwind.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
builtin-clone.rs Handle unwinding, use a loop for arrays 2017-08-14 15:07:21 +02:00
builtin-superkinds-capabilities-transitive.rs
builtin-superkinds-capabilities-xc.rs
builtin-superkinds-capabilities.rs
builtin-superkinds-in-metadata.rs rustc: Implement custom derive (macros 1.1) 2016-09-02 12:52:56 -07:00
builtin-superkinds-phantom-typaram.rs
builtin-superkinds-self-type.rs
builtin-superkinds-simple.rs
builtin-superkinds-typaram.rs
by-value-self-in-mut-slot.rs Prohibit patterns in trait methods without bodies 2016-10-26 20:55:16 +03:00
byte-literals.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
c-stack-as-value.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
c-stack-returning-int64.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
cabi-int-widening.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
call-closure-from-overloaded-op.rs
can-copy-pod.rs
cancel-clean-via-immediate-rvalue-ref.rs
capture-clauses-boxed-closures.rs
capture-clauses-unboxed-closures.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
cast-does-fallback.rs Revert checking casts before fallback. 2018-02-08 17:36:17 -02:00
cast-in-array-size.rs
cast-region-to-uint.rs
cast-rfc0401-vtable-kinds.rs Update check::cast::pointer_kind logic to new rustc 2017-12-23 23:38:09 +02:00
cast-rfc0401.rs
cast-to-infer-ty.rs Be a bit more constrained in our early check 2016-04-14 10:05:51 -04:00
cast.rs revert making casts atomic, test order dependency 2018-03-26 22:58:36 -03:00
catch-expr.rs Add ok-wrapping to catch blocks, per RFC 2018-04-10 20:03:40 -07:00
catch-unwind-bang.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
cci_borrow.rs
cci_capture_clause.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
cci_impl_exe.rs
cci_iter_exe.rs
cci_nested_exe.rs Remove feature(globs) since they are stable 2016-03-10 03:29:55 +01:00
cci_no_inline_exe.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
cell-does-not-clone.rs
cfg-attr-cfg.rs
cfg-attr-crate.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
cfg-family.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
cfg-in-crate-1.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
cfg-macros-foo.rs
cfg-macros-notfoo.rs
cfg-match-arm.rs
cfg-target-family.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
cfg-target-vendor.rs rustc: Add target_vendor for target triples 2015-09-24 01:44:55 +02:00
cfg_attr.rs
cfg_inner_static.rs
cfg_stmt_expr.rs Added stmt_expr_attribute feature gate 2015-11-26 21:47:44 +01:00
cfgs-on-items.rs
char.rs
char_unicode.rs Dedicated tracking issue for UnicodeVersion and UNICODE_VERSION. 2018-04-12 00:13:53 +02:00
check-static-mut-slices.rs mir: always allow &mut [...] in static mut regardless of the array length. 2016-05-13 22:27:09 +03:00
check-static-recursion-foreign.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
check-static-slice.rs allow indexing into constant arrays 2015-11-18 10:57:52 +01:00
check_const-feature-gated.rs fix const index feature-gate regression 2015-12-05 16:52:33 +01:00
child-outlives-parent.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
class-attributes-1.rs
class-attributes-2.rs
class-cast-to-trait-cross-crate-2.rs
class-cast-to-trait-multiple-types.rs
class-cast-to-trait.rs
class-dtor.rs
class-exports.rs
class-impl-very-parameterized-trait.rs
class-implement-trait-cross-crate.rs
class-implement-traits.rs
class-method-cross-crate.rs
class-methods-cross-crate.rs
class-methods.rs
class-poly-methods-cross-crate.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
class-poly-methods.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
class-separate-impl.rs
class-str-field.rs
class-typarams.rs
classes-cross-crate.rs
classes-self-referential.rs
classes-simple-cross-crate.rs
classes-simple-method.rs
classes-simple.rs
classes.rs
cleanup-arm-conditional.rs
cleanup-rvalue-during-if-and-while.rs
cleanup-rvalue-for-scope.rs
cleanup-rvalue-scopes.rs
cleanup-rvalue-temp-during-incomplete-alloc.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
cleanup-shortcircuit.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
clone-closure.rs Stabilize the copy_closures and clone_closures features 2018-03-23 11:37:07 +01:00
clone-with-exterior.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
close-over-big-then-small-data.rs
closure-bounds-can-capture-chan.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
closure-immediate.rs Incorporate review comments 2016-12-14 12:28:25 -05:00
closure-inference.rs
closure-inference2.rs
closure-reform.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
closure-returning-closure.rs Parse nested closure with two consecutive parameter lists properly 2017-09-11 01:00:03 +09:00
closure-to-fn-coercion.rs collector: apply param substs to closures cast to fn items 2017-06-18 18:57:39 +03:00
closure_to_fn_coercion-expected-types.rs Stabilize non capturing closure to fn coercion 2017-05-25 11:57:55 +02:00
cmp-default.rs
coerce-expect-unsized.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
coerce-overloaded-autoderef.rs rustc_typeck: fix binops needing more type informations to coerce. 2017-04-16 06:25:18 +03:00
coerce-reborrow-imm-ptr-arg.rs
coerce-reborrow-imm-ptr-rcvr.rs
coerce-reborrow-imm-vec-arg.rs
coerce-reborrow-imm-vec-rcvr.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
coerce-reborrow-mut-ptr-arg.rs
coerce-reborrow-mut-ptr-rcvr.rs
coerce-reborrow-mut-vec-arg.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
coerce-reborrow-mut-vec-rcvr.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
coerce-unify-return.rs
coerce-unify.rs typeck: Unify if-else blocks, match arms and array elements by coercing where possible. 2016-03-09 16:45:29 +02:00
coerce-unsize-subtype.rs Use subtyping on the target of unsizing coercions. 2017-03-09 21:43:45 +02:00
coherence-bigint-int.rs
coherence-bigint-vecint.rs
coherence-blanket.rs
coherence-covered-type-parameter.rs
coherence-impl-in-fn.rs rustc: Implement custom derive (macros 1.1) 2016-09-02 12:52:56 -07:00
coherence-iterator-vec-any-elem.rs
coherence-iterator-vec.rs
coherence-multidispatch-tuple.rs
coherence-negative-impls-safe.rs
coherence-rfc447-constrained.rs evaluate projections outside the outer probe in recursive evaluation 2015-11-15 19:22:32 +02:00
coherence-subtyping.rs make HR algorithms account for region subtyping 2016-05-31 19:41:25 -04:00
coherence-where-clause.rs
coherence_copy_like.rs
colorful-write-macros.rs
comm.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
command-before-exec.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
command-exec.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
compare-generic-enums.rs
complex.rs
concat.rs
conditional-compile-arch.rs Add powerpc to run-pass/conditional-compile-arch.rs 2018-01-24 15:16:18 -02:00
conditional-compile.rs Add regression test. 2016-09-15 08:16:20 +00:00
conditional-debug-macro-on.rs Remove internal liblog 2017-03-23 11:28:00 -07:00
conservative_impl_trait.rs Stabilize conservative_impl_trait 2018-03-26 10:43:03 +02:00
const-adt-align-mismatch.rs Remove #[derive(Show)] 2015-10-18 19:12:09 +03:00
const-autoderef.rs Translate constants from MIR instead of going through trans::expr/consts. 2016-05-07 07:19:10 +03:00
const-big-enum.rs
const-binops.rs
const-bitshift-rhs-inference.rs don't assume the rhs of a bitshift is of any particular type 2016-03-16 10:54:00 +01:00
const-block-cross-crate-fn.rs
const-block-item-macro-codegen.rs
const-block-item.rs rustc_privacy: Fix bugs in SanePrivacyVisitor 2015-11-09 21:15:53 +03:00
const-block.rs
const-bound.rs
const-byte-str-cast.rs improve const eval error reporting on "" and b"" casts 2016-07-22 09:34:44 +02:00
const-cast-ptr-int.rs
const-cast.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
const-const.rs
const-contents.rs
const-cross-crate-const.rs
const-cross-crate-extern.rs
const-deref.rs
const-enum-byref-self.rs
const-enum-byref.rs
const-enum-cast.rs
const-enum-ptr.rs
const-enum-struct.rs
const-enum-struct2.rs
const-enum-structlike.rs
const-enum-tuple.rs
const-enum-tuple2.rs
const-enum-tuplestruct.rs
const-enum-tuplestruct2.rs
const-enum-vec-index.rs fix run-pass test that required Copy impl 2017-02-19 15:33:47 -05:00
const-enum-vec-ptr.rs
const-enum-vector.rs
const-err.rs Don't warn about char comparisons in constexprs 2017-03-31 23:52:35 +01:00
const-expr-in-fixed-length-vec.rs
const-expr-in-vec-repeat.rs
const-extern-function.rs
const-fields-and-indexing.rs
const-fn-const-eval.rs allow constant evaluation of function calls 2015-10-19 13:13:02 +02:00
const-fn-feature-flags.rs Stabilize const-calling existing const-fns in std 2017-11-26 23:43:44 +01:00
const-fn-method.rs implement calling of const fn-methods in true constants 2015-11-27 16:43:24 +01:00
const-fn-nested.rs
const-fn-stability-calls.rs change #![feature(const_fn)] to specific gates 2017-09-16 15:53:02 +00:00
const-fn-val.rs
const-fn.rs typestrong constant integers 2016-03-10 12:50:12 +01:00
const-index-feature-gate.rs Fully use miri in trans 2018-03-08 08:34:05 +01:00
const-meth-pattern.rs Fix patterns of the constants that are const meth 2016-04-30 03:40:09 +03:00
const-negation.rs Don't use the undefined bytes of PrimVal::Bytes 2018-03-08 08:34:18 +01:00
const-negative.rs
const-nullary-enum.rs
const-nullary-univariant-enum.rs
const-pattern-variant.rs rustc_const_eval: support all unit enum variants. 2017-04-23 11:11:57 +03:00
const-rec-and-tup.rs
const-region-ptrs-noncopy.rs
const-region-ptrs.rs
const-size_of-align_of.rs Stabilize const-calling existing const-fns in std 2017-11-26 23:43:44 +01:00
const-str-ptr.rs test: adjust for the move to MIR-based const checking. 2016-05-07 19:14:32 +03:00
const-struct-offsets.rs
const-struct.rs
const-trait-to-trait.rs
const-tuple-struct.rs
const-typeid-of.rs Turn type_id into a constant intrinsic 2018-02-01 23:03:19 +01:00
const-unit-struct.rs
const-unsafe-fn.rs Switch to 'const unsafe fn' ordering (rust-lang/rust#29107) 2015-10-25 12:03:07 +08:00
const-vec-of-fns.rs
const-vec-syntax.rs
const-vecs-and-slices.rs
const.rs
consts-in-patterns.rs allow const function calls in consts that are used in patterns 2015-12-06 12:59:53 +01:00
copy-closure.rs Stabilize the copy_closures and clone_closures features 2018-03-23 11:37:07 +01:00
copy-out-of-array-1.rs shallow Clone for #[derive(Copy,Clone)] 2016-04-26 13:49:29 -04:00
core-run-destroy.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
crate-attributes-using-cfg_attr.rs
crate-leading-sep.rs
crate-method-reexport-grrrrrrr.rs Remove the deprecated box(PLACE) syntax. 2015-09-24 18:00:08 +03:00
crate-name-attr-used.rs
cross-crate-const-pat.rs
cross-crate-newtype-struct-pat.rs
crt-static-off-works.rs rustc: Implement #[link(cfg(..))] and crt-static 2016-11-16 07:00:09 -08:00
crt-static-on-works.rs rustc: Implement #[link(cfg(..))] and crt-static 2016-11-16 07:00:09 -08:00
cycle-generic-bound.rs Make RFC 1214 warnings into errors, and rip out the "warn or err" 2015-12-18 12:41:02 -05:00
cycle-trait-type-trait.rs Make RFC 1214 warnings into errors, and rip out the "warn or err" 2015-12-18 12:41:02 -05:00
dead-code-alias-in-pat.rs Count type aliases in patterns 2017-10-31 11:57:40 +09:00
dead-code-leading-underscore.rs
debuginfo-lto.rs Add regression test for debuginfo + LTO 2017-01-18 11:24:43 -05:00
deep.rs ci: Disable optimized tests for asm.js 2018-03-16 12:47:49 -07:00
default-associated-types.rs Test fixes, added README for tests 2016-03-14 15:05:14 -07:00
default-method-parsing.rs
default-method-simple.rs
default-method-supertrait-vtable.rs
defaults-well-formedness.rs Fix #49344 2018-04-05 15:21:56 -03:00
deprecation-in-force-unstable.rs Test staging attributes when -Zforce-unstable-if-unmarked is set 2017-08-20 16:57:17 +02:00
deref-lval.rs
deref-mut-on-ref.rs
deref-on-ref.rs
deref-rc.rs
deref.rs
derive-no-std.rs refactor derive-no-std test, add empty struct/enum 2016-03-14 16:46:54 -04:00
derive-partialord-correctness.rs Add test for derive(PartialOrd) correctness 2018-04-11 16:25:34 +01:00
deriving-associated-types.rs
deriving-bounds.rs rustc: Implement custom derive (macros 1.1) 2016-09-02 12:52:56 -07:00
deriving-clone-array.rs Add regression test for Clone for [[T; 256]; 4] where T: Copy and not Clone 2015-12-07 01:55:00 +01:00
deriving-clone-enum.rs
deriving-clone-generic-enum.rs
deriving-clone-generic-struct.rs
deriving-clone-generic-tuple-struct.rs
deriving-clone-struct.rs
deriving-clone-tuple-struct.rs
deriving-cmp-generic-enum.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
deriving-cmp-generic-struct-enum.rs
deriving-cmp-generic-struct.rs
deriving-cmp-generic-tuple-struct.rs
deriving-cmp-shortcircuit.rs
deriving-copyclone.rs shallow Clone for #[derive(Copy,Clone)] 2016-04-26 13:49:29 -04:00
deriving-default-box.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
deriving-enum-single-variant.rs
deriving-eq-ord-boxed-slice.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
deriving-hash.rs deriv(Hash) for single-variant enum should not hash discriminant 2017-06-16 22:59:20 +03:00
deriving-in-fn.rs
deriving-in-macro.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
deriving-meta-multiple.rs
deriving-meta.rs
deriving-self-lifetime-totalord-totaleq.rs
deriving-show-2.rs
deriving-show.rs impl Debug for raw pointers to unsized data 2016-10-01 01:50:56 +00:00
deriving-via-extension-c-enum.rs
deriving-via-extension-enum.rs
deriving-via-extension-hash-enum.rs rustdoc: Fix testing no_run code blocks 2016-04-11 09:26:59 -07:00
deriving-via-extension-hash-struct.rs
deriving-via-extension-struct-empty.rs
deriving-via-extension-struct-like-enum-variant.rs
deriving-via-extension-struct-tuple.rs
deriving-via-extension-struct.rs
deriving-via-extension-type-params.rs
deriving-with-repr-packed.rs limit packed copy-out to non-generic Copy structs 2017-11-26 16:12:43 +02:00
destructure-array-1.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
die-macro.rs
discrim-explicit-23030.rs
discriminant_value-wrapper.rs stabilize mem::discriminant (closes #24263) 2017-09-02 01:59:54 -04:00
discriminant_value.rs
div-mod.rs
diverging-fallback-control-flow.rs stabilise feature(never_type) 2018-03-14 12:44:51 +08:00
diverging-fallback-method-chain.rs more detailed tests around diverging type variables 2017-03-30 07:55:29 -04:00
diverging-fallback-option.rs more detailed tests around diverging type variables 2017-03-30 07:55:29 -04:00
double-ref.rs
drop-on-empty-block-exit.rs
drop-on-ret.rs
drop-struct-as-object.rs
drop-trait-enum.rs [emscripten] Ignore tests 2016-08-10 16:38:31 +02:00
drop-trait-generic.rs
drop-trait.rs
drop-uninhabited-enum.rs
drop-with-type-ascription-1.rs
drop-with-type-ascription-2.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
dropck-eyepatch-extern-crate.rs tests for #[may_dangle] attribute. 2016-10-12 18:24:23 +02:00
dropck-eyepatch-reorder.rs Stabilize attributes on generic parameters 2018-04-05 02:19:56 +03:00
dropck-eyepatch.rs Stabilize attributes on generic parameters 2018-04-05 02:19:56 +03:00
dropck_legal_cycles.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
dst-coerce-custom.rs
dst-coerce-rc.rs fallout of reworking rc and arc APIs 2015-08-19 15:52:12 -07:00
dst-coercions.rs
dst-deref-mut.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
dst-deref.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
dst-field-align.rs removed unused struct 2017-02-09 17:58:26 +01:00
dst-index.rs
dst-irrefutable-bind.rs Move unsized_tuple_coercion behind a feature gate. 2017-06-29 21:25:35 +09:00
dst-raw.rs Move unsized_tuple_coercion behind a feature gate. 2017-06-29 21:25:35 +09:00
dst-struct-sole.rs
dst-struct.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
dst-trait-tuple.rs Move unsized_tuple_coercion behind a feature gate. 2017-06-29 21:25:35 +09:00
dst-trait.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
dst-tuple-sole.rs Move unsized_tuple_coercion behind a feature gate. 2017-06-29 21:25:35 +09:00
dst-tuple.rs Move unsized_tuple_coercion behind a feature gate. 2017-06-29 21:25:35 +09:00
dupe-first-attr.rc
duplicated-external-mods.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
dyn-trait.rs rename epoch to edition 2018-03-20 10:27:02 -07:00
dynamic-drop.rs Rollup merge of #49194 - Zoxc:unsafe-generator, r=cramertj 2018-03-25 01:26:34 +08:00
early-ret-binop-add.rs
early-vtbl-resolution.rs
else-if.rs
empty-allocation-non-null.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
empty-allocation-rvalue-non-null.rs
empty-mutable-vec.rs
empty-struct-braces.rs Partially stabilize RFC 1506 "Clarify relationships between ADTs" 2016-11-08 22:34:05 +03:00
empty-tag.rs
empty-type-parameter-list.rs tests: add test for empty <> 2016-03-03 23:30:23 +03:00
empty-types-in-patterns.rs stabilise feature(never_type) 2018-03-14 12:44:51 +08:00
empty_global_asm.rs Add global_asm tests 2017-04-12 19:12:50 -05:00
enum-alignment.rs
enum-clike-ffi-as-int.rs tests: Avoid transmuting from fn item types. 2016-03-09 16:45:29 +02:00
enum-discr.rs
enum-discrim-autosizing.rs Stabilise attributes on statements. 2016-10-12 08:40:22 +13:00
enum-discrim-manual-sizing.rs rustc: do not inject discriminant fields into Layout::General's variants. 2017-11-19 02:14:28 +02:00
enum-discrim-range-overflow.rs
enum-discrim-width-stuff.rs
enum-disr-val-pretty.rs
enum-export-inheritance.rs
enum-layout-optimization.rs inhibit enum layout optimizations under #[repr(C)] or #[repr(u8)] 2017-03-01 15:44:27 -05:00
enum-non-c-like-repr-c-and-int.rs Add tests for repr(C)-non-clike-enum layout 2017-11-20 15:18:48 -05:00
enum-non-c-like-repr-c.rs Add tests for repr(C)-non-clike-enum layout 2017-11-20 15:18:48 -05:00
enum-non-c-like-repr-int.rs Add reftest that checks the layout of repr(int) on non-c-like enums 2017-11-08 12:47:39 -05:00
enum-null-pointer-opt.rs Use num::NonZero* instead of NonZero<_> in rustc and tests 2018-03-17 23:07:40 +01:00
enum-nullable-const-null-with-fields.rs
enum-nullable-simplifycfg-misopt.rs
enum-univariant-repr.rs rustc_mir: always downcast enums, even if univariant. 2017-11-18 20:52:38 +02:00
enum-variants.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
enum-vec-initializer.rs
env-args-reverse-iterator.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
env-funky-keys.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
env-home-dir.rs move comment right onto the line in question 2018-01-29 13:28:23 -05:00
env-vars.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
epoch-gate-feature.rs Fix test 2018-03-29 08:45:14 +02:00
eq-multidispatch.rs
estr-slice.rs
estr-uniq.rs
evec-slice.rs
exec-env.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
exhaustive-bool-match-sanity.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
explicit-i-suffix.rs
explicit-self-closures.rs
explicit-self-generic.rs
explicit-self-objects-uniq.rs
explicit-self.rs
explicit_self_xcrate_exe.rs
export-abstract-tag.rs
export-glob-imports-target.rs
export-multi.rs
export-non-interference2.rs
export-non-interference3.rs
export-tag-variant.rs
expr-block-fn.rs
expr-block-generic-unique1.rs
expr-block-generic-unique2.rs
expr-block-generic.rs
expr-block-slot.rs
expr-block-unique.rs
expr-block.rs
expr-copy.rs
expr-empty-ret.rs
expr-fn.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
expr-if-generic.rs
expr-if-panic-all.rs
expr-if-panic.rs
expr-if-struct.rs
expr-if-unique.rs
expr-if.rs
expr-match-generic-unique1.rs
expr-match-generic-unique2.rs
expr-match-generic.rs
expr-match-panic-all.rs
expr-match-panic.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
expr-match-struct.rs
expr-match-unique.rs
expr-match.rs
expr-scope.rs
ext-expand-inner-exprs.rs
exterior.rs
extern-1.rs
extern-call-deep.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
extern-call-deep2.rs Fix rust_test_helpers linkage. 2016-12-01 16:22:04 -08:00
extern-call-direct.rs
extern-call-indirect.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
extern-call-scrub.rs Fix rust_test_helpers linkage. 2016-12-01 16:22:04 -08:00
extern-calling-convention-test.rs
extern-compare-with-return-type.rs
extern-crosscrate.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
extern-foreign-crate.rs
extern-methods.rs adapt tests 2016-10-25 19:56:36 +02:00
extern-mod-abi.rs
extern-mod-ordering-exe.rs
extern-pass-char.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
extern-pass-double.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
extern-pass-empty.rs test: Update Emscripten failures/passing 2017-10-17 18:46:38 -07:00
extern-pass-TwoU8s.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
extern-pass-TwoU16s.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
extern-pass-TwoU32s.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
extern-pass-TwoU64s.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
extern-pass-u32.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
extern-pass-u64.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
extern-pub.rs
extern-return-TwoU8s.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
extern-return-TwoU16s.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
extern-return-TwoU32s.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
extern-return-TwoU64s.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
extern-rust.rs
extern-take-value.rs Get tests working on MSVC 32-bit 2016-01-29 16:25:21 -08:00
extern-thiscall.rs add thiscall calling convention support 2017-05-24 16:40:03 -04:00
extern-types-inherent-impl.rs Implement RFC 1861: Extern types 2017-10-27 23:01:34 +02:00
extern-types-manual-sync-send.rs Implement RFC 1861: Extern types 2017-10-27 23:01:34 +02:00
extern-types-pointer-cast.rs Fix spelling s/casted/cast/ 2018-03-01 12:54:16 +01:00
extern-types-size_of_val.rs Implement RFC 1861: Extern types 2017-10-27 23:01:34 +02:00
extern-types-thin-pointer.rs Implement RFC 1861: Extern types 2017-10-27 23:01:34 +02:00
extern-types-trait-impl.rs Implement RFC 1861: Extern types 2017-10-27 23:01:34 +02:00
extern-vectorcall.rs adapt tests 2016-10-25 19:56:36 +02:00
extern_fat_drop.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
extoption_env-not-defined.rs
fact.rs
fat-arrow-match.rs
fat-lto.rs rustc: Add -C lto=val option 2018-01-23 14:13:47 -08:00
fat-ptr-cast.rs
fds-are-cloexec.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
field-destruction-order.rs
filter-block-view-items.rs
fixed_length_copy.rs
fixup-deref-mut.rs
float-int-invalid-const-cast.rs Stabilize i128_type 2018-03-26 08:36:50 -05:00
float-literal-inference.rs
float-nan.rs
float-signature.rs
float.rs
float2.rs
float_math.rs Update float_math test to not use constants 2016-03-19 22:35:28 +01:00
floatlits.rs
fmt-pointer-trait.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
fn-abi.rs Get tests working on MSVC 32-bit 2016-01-29 16:25:21 -08:00
fn-bare-assign.rs
fn-bare-coerce-to-block.rs
fn-bare-item.rs
fn-bare-size.rs
fn-bare-spawn.rs
fn-coerce-field.rs
fn-item-type-cast.rs
fn-item-type-coerce.rs
fn-item-type-zero-sized.rs Test that function types are actually zero-sized. 2016-03-09 16:45:29 +02:00
fn-lval.rs
fn-pattern-expected-type-2.rs
fn-pattern-expected-type.rs
fn-type-infer.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
for-destruct.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
for-loop-goofiness.rs
for-loop-has-unit-body.rs Change for-loop desugar to not borrow the iterator during the loop 2017-06-01 18:33:47 +02:00
for-loop-into-iterator.rs
for-loop-lifetime-of-unbound-values.rs document purpose of test 2017-06-15 12:28:07 -04:00
for-loop-macro.rs
for-loop-mut-ref-element.rs Add trailing newlines to files which have no trailing newlines. 2017-12-30 15:50:52 +08:00
for-loop-no-std.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
for-loop-panic.rs
for-loop-unconstrained-element-type-i32-fallback.rs readd test 2017-09-14 10:46:14 -04:00
foreach-external-iterators-break.rs
foreach-external-iterators-hashmap-break-restart.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
foreach-external-iterators-hashmap.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
foreach-external-iterators-loop.rs
foreach-external-iterators-nested.rs
foreach-external-iterators.rs
foreach-nested.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
foreach-put-structured.rs
foreach-simple-outer-slot.rs
foreign-call-no-runtime.rs Unskip some tests on AArch64 2017-08-04 13:45:08 +02:00
foreign-dupe.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
foreign-fn-linkname.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
foreign-fn-with-byval.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
foreign-int-types.rs rustc: Don't lint about isize/usize in FFI 2015-09-30 14:31:01 -07:00
foreign-mod-unused-const.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
foreign-no-abi.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
foreign-struct.rs
foreign-truncated-arguments.rs Add a regression test 2016-05-26 02:48:25 +03:00
foreign2.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
format-nan.rs
format-no-std.rs test: Update Emscripten failures/passing 2017-10-17 18:46:38 -07:00
format-ref-cell.rs
fsu-moves-and-copies.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
fun-call-variants.rs
fun-indirect-call.rs
func-arg-incomplete-pattern.rs
func-arg-ref-pattern.rs
func-arg-wild-pattern.rs
functional-struct-upd.rs
generic-alias-unique.rs
generic-default-type-params-cross-crate.rs
generic-default-type-params.rs
generic-derived-type.rs
generic-exterior-unique.rs
generic-extern-mangle.rs
generic-fn-infer.rs
generic-fn-twice.rs
generic-fn-unique.rs
generic-fn.rs
generic-ivec-leak.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
generic-newtype-struct.rs
generic-object.rs
generic-recursive-tag.rs
generic-static-methods.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
generic-tag-corruption.rs
generic-tag-local.rs
generic-tag-match.rs
generic-tag-values.rs
generic-tag.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
generic-temporary.rs
generic-tup.rs
generic-type-synonym.rs
generic-type.rs
generic-unique.rs
global-scope.rs
guards-not-exhaustive.rs
guards.rs
hashmap-memory.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
hello.rs
hrtb-binder-levels-in-object-types.rs
hrtb-debruijn-object-types-in-closures.rs
hrtb-fn-like-trait-object.rs
hrtb-fn-like-trait.rs
hrtb-opt-in-copy.rs shallow Clone for #[derive(Copy,Clone)] 2016-04-26 13:49:29 -04:00
hrtb-parse.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
hrtb-precedence-of-plus-where-clause.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
hrtb-precedence-of-plus.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
hrtb-resolve-lifetime.rs
hrtb-trait-object-paren-notation.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
hrtb-trait-object-passed-to-closure.rs
hrtb-type-outlives.rs
hrtb-unboxed-closure-trait.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
html-literals.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
huge-largest-array.rs
hygiene-dodging-1.rs
hygiene.rs Fix fallout in tests. 2016-10-02 08:25:28 +00:00
hygienic-labels-in-let.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
hygienic-labels.rs
i8-incr.rs
i32-sub.rs
i128-ffi.rs Stabilize i128_type 2018-03-26 08:36:50 -05:00
i128.rs Stabilize i128_type 2018-03-26 08:36:50 -05:00
if-bot.rs
if-check.rs
if-let.rs
if-ret.rs
ifmt.rs Always print floats with a decimal point with the Debug formatter 2017-12-19 01:35:35 +00:00
ignore-all-the-things.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
impl-for-never.rs stabilise feature(never_type) 2018-03-14 12:44:51 +08:00
impl-implicit-trait.rs
impl-inherent-non-conflict.rs typos: fix a grabbag of typos all over the place 2015-10-08 19:49:31 +01:00
impl-inherent-prefer-over-trait.rs
impl-not-adjacent-to-type.rs
impl-privacy-xc-1.rs
impl-privacy-xc-2.rs
implied-bounds-closure-arg-outlives.rs leak the affects of closures on the free-region-map, like we used to 2017-11-16 05:57:51 -05:00
import-from.rs
import-glob-0.rs
import-glob-1.rs
import-glob-crate.rs Support use *; and use ::*;. 2016-10-23 22:02:39 +00:00
import-in-block.rs
import-prefix-macro.rs syntax: Parse import prefixes as paths 2016-04-17 03:48:40 +03:00
import-rename.rs
import-trailing-comma.rs
import.rs
import2.rs
import3.rs
import4.rs
import5.rs
import6.rs
import7.rs
import8.rs
imports.rs Fix fallout in tests. 2016-11-21 09:21:54 +00:00
in-band-lifetimes.rs Stabilize conservative_impl_trait 2018-03-26 10:43:03 +02:00
inc-range-pat.rs Stabilize dotdoteq_in_patterns language feature. 2018-03-15 16:58:02 +08:00
inconsistent-lifetime-mismatch.rs
infer-fn-tail-expr.rs
infer-from-object-trait-issue-26952.rs
inferred-suffix-in-pattern-range.rs
inherent-trait-method-order.rs
init-large-type.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
init-res-into-things.rs
inlined-main.rs Ensure main() always has external linkage 2018-02-25 23:05:06 +00:00
inner-attrs-on-impl.rs
inner-module.rs
inner-static.rs
instantiable.rs
int-abs-overflow.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
int.rs
integer-literal-radix.rs
integer-literal-suffix-inference-2.rs
integer-literal-suffix-inference-3.rs
integer-literal-suffix-inference.rs
into-iterator-type-inference-shift.rs
intrinsic-alignment.rs Make 3 run-pass tests works on android (aarch64 and x86) 2018-01-25 18:55:11 -02:00
intrinsic-assume.rs
intrinsic-atomics-cc.rs
intrinsic-atomics.rs Change compare_exchange to return a Result<T, T> 2016-03-19 11:44:38 +00:00
intrinsic-move-val-cleanups.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
intrinsic-move-val.rs Remove drop flags from structs and enums implementing Drop. 2016-08-24 13:23:37 +03:00
intrinsic-uninit.rs
intrinsic-unreachable.rs
intrinsics-integer.rs Stabilize i128_type 2018-03-26 08:36:50 -05:00
intrinsics-math.rs ci: Disable optimized tests for asm.js 2018-03-16 12:47:49 -07:00
invoke-external-foreign.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
irrefutable-slice-patterns.rs Simplify irrefutable slice patterns 2018-01-17 12:22:17 +09:00
irrefutable-unit.rs
issue-333.rs
issue-868.rs
issue-979.rs
issue-1112.rs
issue-1251.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
issue-1257.rs
issue-1451.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
issue-1460.rs
issue-1660.rs
issue-1696.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
issue-1701.rs Fix the fallout 2015-11-19 11:41:09 +03:00
issue-1821.rs
issue-1866.rs
issue-1974.rs
issue-2063-resource.rs Stabilize static_recursion 2017-02-21 23:41:04 -08:00
issue-2063.rs Stabilize static_recursion 2017-02-21 23:41:04 -08:00
issue-2074.rs
issue-2190-1.rs test: Update Emscripten failures/passing 2017-10-17 18:46:38 -07:00
issue-2214.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-2216.rs
issue-2284.rs
issue-2288.rs rustc: Implement custom derive (macros 1.1) 2016-09-02 12:52:56 -07:00
issue-2311-2.rs
issue-2311.rs
issue-2312.rs
issue-2316-c.rs
issue-2380-b.rs
issue-2383.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
issue-2414-c.rs
issue-2428.rs
issue-2445-b.rs
issue-2445.rs
issue-2463.rs
issue-2472.rs
issue-2487-a.rs
issue-2502.rs
issue-2526-a.rs
issue-2550.rs
issue-2611-3.rs Fix compiletest so it respects warnings for run-pass. 2016-08-22 16:51:37 -07:00
issue-2631-b.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
issue-2633-2.rs
issue-2633.rs
issue-2642.rs
issue-2708.rs
issue-2718.rs
issue-2723-b.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
issue-2734.rs
issue-2735-2.rs
issue-2735-3.rs
issue-2735.rs
issue-2748-a.rs
issue-2748-b.rs
issue-2804-2.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
issue-2895.rs Remove drop flags from structs and enums implementing Drop. 2016-08-24 13:23:37 +03:00
issue-2904.rs
issue-2935.rs Remove the deprecated box(PLACE) syntax. 2015-09-24 18:00:08 +03:00
issue-2936.rs
issue-2989.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
issue-3012-2.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
issue-3026.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
issue-3037.rs
issue-3052.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
issue-3091.rs
issue-3109.rs
issue-3121.rs shallow Clone for #[derive(Copy,Clone)] 2016-04-26 13:49:29 -04:00
issue-3149.rs
issue-3211.rs
issue-3220.rs
issue-3290.rs
issue-3389.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
issue-3424.rs
issue-3429.rs
issue-3447.rs
issue-3500.rs
issue-3556.rs
issue-3559.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
issue-3563-2.rs
issue-3563-3.rs
issue-3574.rs
issue-3609.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
issue-3656.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
issue-3683.rs
issue-3702.rs
issue-3743.rs
issue-3753.rs
issue-3794.rs
issue-3847.rs
issue-3874.rs
issue-3878.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
issue-3888-2.rs
issue-3895.rs
issue-3904.rs
issue-3935.rs
issue-3979-2.rs
issue-3979-generics.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
issue-3979-xcrate.rs
issue-3979.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
issue-3991.rs
issue-4025.rs
issue-4107.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
issue-4208.rs
issue-4228.rs
issue-4252.rs
issue-4333.rs
issue-4387.rs
issue-4401.rs
issue-4446.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
issue-4448.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
issue-4464.rs
issue-4541.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-4542.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-4545.rs
issue-4734.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
issue-4735.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
issue-4759-1.rs
issue-4759.rs
issue-4830.rs
issue-4865-1.rs
issue-4865-2.rs
issue-4865-3.rs
issue-4875.rs
issue-5008-borrowed-traitobject-method-call.rs
issue-5060.rs Miscellaneous cleanup for old issues. 2015-09-20 11:37:08 +01:00
issue-5192.rs
issue-5239-2.rs
issue-5243.rs
issue-5280.rs
issue-5315.rs
issue-5321-immediates-with-bare-self.rs
issue-5353.rs
issue-5518.rs
issue-5521.rs
issue-5530.rs
issue-5550.rs
issue-5554.rs
issue-5572.rs
issue-5666.rs
issue-5688.rs
issue-5708.rs Fallout in tests --- misc error message changes, WF fixes 2015-08-12 17:58:57 -04:00
issue-5718.rs
issue-5741.rs
issue-5754.rs
issue-5791.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
issue-5884.rs
issue-5900.rs
issue-5917.rs
issue-5950.rs
issue-5988.rs
issue-5997.rs
issue-6117.rs
issue-6128.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
issue-6130.rs
issue-6153.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
issue-6157.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
issue-6318.rs
issue-6334.rs
issue-6341.rs
issue-6344-let.rs
issue-6344-match.rs
issue-6449.rs
issue-6470.rs
issue-6557.rs
issue-6892.rs
issue-6898.rs Make RFC 1214 warnings into errors, and rip out the "warn or err" 2015-12-18 12:41:02 -05:00
issue-6919.rs
issue-7012.rs
issue-7178.rs
issue-7222.rs
issue-7268.rs
issue-7344.rs
issue-7519-match-unit-in-arg.rs
issue-7563.rs
issue-7575.rs
issue-7607-2.rs
issue-7660.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
issue-7663.rs
issue-7673-cast-generically-implemented-trait.rs
issue-7784.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
issue-7899.rs
issue-7911.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
issue-8044.rs
issue-8171-default-method-self-inherit-builtin-trait.rs
issue-8248.rs
issue-8249.rs
issue-8259.rs
issue-8351-1.rs
issue-8351-2.rs
issue-8391.rs
issue-8398.rs
issue-8401.rs
issue-8460.rs Remove num::{Zero,One} 2017-04-20 21:16:31 -07:00
issue-8498.rs
issue-8506.rs
issue-8521.rs Allow path fragments to be parsed as type parameter bounds in macro expansion 2016-12-16 14:16:46 +03:00
issue-8578.rs
issue-8709.rs
issue-8783.rs
issue-8827.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
issue-8851.rs
issue-8860.rs don't track borrows for empty regions 2017-12-03 02:29:04 +02:00
issue-8898.rs
issue-9047.rs
issue-9110.rs
issue-9123.rs
issue-9129.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
issue-9188.rs
issue-9243.rs Stabilize drop_types_in_const. 2017-09-09 17:39:30 +03:00
issue-9249.rs
issue-9259.rs
issue-9382.rs rustbuild: Migrate tidy checks to Rust 2016-04-12 08:17:42 -07:00
issue-9394-inherited-trait-calls.rs
issue-9396.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
issue-9446.rs
issue-9719.rs
issue-9737.rs
issue-9837.rs Add regression test for #9837. 2016-09-18 13:01:40 -04:00
issue-9906.rs
issue-9918.rs
issue-9942.rs
issue-9951.rs
issue-9968.rs
issue-10025.rs
issue-10028.rs
issue-10031.rs
issue-10228.rs
issue-10392.rs
issue-10396.rs
issue-10436.rs
issue-10456.rs
issue-10626.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-10638.rs
issue-10682.rs
issue-10683.rs Deprecate the AsciiExt trait in favor of inherent methods 2018-03-21 17:54:33 +01:00
issue-10718.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
issue-10734.rs Remove drop flags from structs and enums implementing Drop. 2016-08-24 13:23:37 +03:00
issue-10763.rs
issue-10764.rs
issue-10767.rs Remove the deprecated box(PLACE) syntax. 2015-09-24 18:00:08 +03:00
issue-10802.rs
issue-10806.rs
issue-10853.rs
issue-10902.rs
issue-11047.rs Test case for Issue 11047 2015-09-28 22:33:29 +10:00
issue-11085.rs
issue-11205.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
issue-11224.rs
issue-11225-1.rs rustc_privacy: Do not export items needed solely for the reachability analysis 2015-11-05 18:17:33 +03:00
issue-11225-2.rs rustc_privacy: Do not export items needed solely for the reachability analysis 2015-11-05 18:17:33 +03:00
issue-11225-3.rs rustc_privacy: Do not export items needed solely for the reachability analysis 2015-11-05 18:17:33 +03:00
issue-11267.rs
issue-11382.rs
issue-11384.rs
issue-11508.rs
issue-11529.rs
issue-11552.rs
issue-11577.rs rustbuild: Migrate tidy checks to Rust 2016-04-12 08:17:42 -07:00
issue-11592.rs
issue-11612.rs
issue-11677.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
issue-11709.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
issue-11820.rs
issue-11869.rs
issue-11940.rs
issue-11958.rs
issue-12033.rs Fix lifetime rules for 'if' conditions 2016-08-27 12:27:34 -07:00
issue-12133-1.rs
issue-12133-2.rs
issue-12133-3.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-12285.rs
issue-12582.rs
issue-12612.rs
issue-12660.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
issue-12677.rs
issue-12699.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
issue-12729.rs
issue-12744.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
issue-12860.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
issue-12909.rs
issue-13027.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
issue-13105.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
issue-13167.rs
issue-13204.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
issue-13214.rs
issue-13259-windows-tcb-trash.rs std: Migrate to the new libc 2015-11-09 22:55:50 -08:00
issue-13264.rs shallow Clone for #[derive(Copy,Clone)] 2016-04-26 13:49:29 -04:00
issue-13304.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-13323.rs
issue-13405.rs
issue-13434.rs
issue-13494.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
issue-13507-2.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
issue-13620.rs
issue-13655.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
issue-13665.rs
issue-13703.rs
issue-13763.rs std: Clean out deprecated APIs 2016-03-12 12:31:13 -08:00
issue-13775.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
issue-13808.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
issue-13837.rs
issue-13867.rs
issue-13872.rs
issue-13902.rs
issue-14082.rs
issue-14229.rs
issue-14254.rs Fallout in tests --- misc error message changes, WF fixes 2015-08-12 17:58:57 -04:00
issue-14308.rs Fix the fallout 2015-11-19 11:41:09 +03:00
issue-14330.rs
issue-14344.rs
issue-14382.rs
issue-14393.rs
issue-14399.rs
issue-14421.rs
issue-14422.rs
issue-14456.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-14589.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
issue-14821.rs
issue-14837.rs
issue-14865.rs
issue-14875.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
issue-14901.rs
issue-14919.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
issue-14933.rs
issue-14936.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
issue-14940.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-14958.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
issue-14959.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
issue-15043.rs
issue-15063.rs
issue-15080.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
issue-15104.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
issue-15108.rs
issue-15129.rs
issue-15155.rs
issue-15189.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
issue-15221.rs
issue-15261.rs
issue-15444.rs
issue-15487.rs rust: Import LLD for linking wasm objects 2018-03-03 20:21:35 -08:00
issue-15523-big.rs
issue-15523.rs
issue-15562.rs
issue-15571.rs
issue-15673.rs
issue-15689-1.rs
issue-15689-2.rs
issue-15730.rs
issue-15734.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
issue-15735.rs Add test for issue #15735 2016-02-09 23:56:10 +00:00
issue-15763.rs Revert "Auto merge of #39485 - canndrew:inference-fix-39297, r=nikomatsakis" 2017-03-22 11:13:09 -04:00
issue-15774.rs
issue-15793.rs
issue-15858.rs
issue-15881-model-lexer-dotdotdot.rs
issue-16151.rs
issue-16256.rs
issue-16272.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-16278.rs
issue-16441.rs
issue-16452.rs
issue-16492.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
issue-16530.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
issue-16560.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
issue-16596.rs
issue-16597-empty.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
issue-16597.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
issue-16602-1.rs
issue-16602-2.rs
issue-16602-3.rs
issue-16643.rs
issue-16648.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
issue-16668.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
issue-16671.rs Added test for spurious cannot borrow immutable item error with a closure 2017-11-30 23:16:17 +00:00
issue-16739.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
issue-16745.rs
issue-16774.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
issue-16783.rs
issue-16819.rs Remove unwanted auto-linking and update 2018-04-16 23:37:11 +02:00
issue-16922.rs
issue-17068.rs
issue-17074.rs
issue-17121.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-17170.rs Fix existing tests for new #[repr(simd)]. 2015-08-17 14:41:40 -07:00
issue-17216.rs
issue-17233.rs
issue-17302.rs
issue-17322.rs
issue-17336.rs Add regression test for #17336 2015-10-12 09:44:26 -04:00
issue-17351.rs
issue-17361.rs
issue-17503.rs
issue-17662.rs
issue-17718-const-destructors.rs Stabilize drop_types_in_const. 2017-09-09 17:39:30 +03:00
issue-17718-parse-const.rs
issue-17718-static-unsafe-interior.rs Stabilize const-calling existing const-fns in std 2017-11-26 23:43:44 +01:00
issue-17718.rs Stabilize const-calling existing const-fns in std 2017-11-26 23:43:44 +01:00
issue-17732.rs
issue-17734.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
issue-17746.rs
issue-17756.rs
issue-17771.rs
issue-17816.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
issue-17877.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
issue-17897.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
issue-17904.rs
issue-18060.rs Add test for issue 18060. 2016-11-06 16:32:49 +01:00
issue-18075.rs
issue-18083.rs
issue-18088.rs Add testcase for issue-18088. 2016-09-28 23:05:32 +09:00
issue-18110.rs
issue-18173.rs prefer hyphens in test files named after issue numbers 2016-12-19 11:53:32 -08:00
issue-18188.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
issue-18232.rs
issue-18352.rs
issue-18353.rs
issue-18412.rs
issue-18425.rs
issue-18446.rs Add tests for issues with the 'E-needtest' label. 2017-03-07 14:01:19 +09:00
issue-18464.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
issue-18501.rs
issue-18514.rs tests: replace "lvalue" terminology with "place". 2018-01-29 11:48:12 +02:00
issue-18539.rs
issue-18652.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
issue-18655.rs
issue-18661.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
issue-18685.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
issue-18711.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
issue-18738.rs
issue-18767.rs
issue-18809.rs
issue-18845.rs tests: replace "lvalue" terminology with "place". 2018-01-29 11:48:12 +02:00
issue-18859.rs
issue-18906.rs
issue-18913.rs
issue-18937-1.rs elaborate T: 'a dependencies 2016-11-01 14:04:14 -04:00
issue-18988.rs
issue-19001.rs type_of: use sizing_type_of to check the size of arrays 2015-10-27 23:02:23 +02:00
issue-19037.rs
issue-19081.rs
issue-19097.rs
issue-19098.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
issue-19102.rs
issue-19127.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
issue-19129-1.rs
issue-19129-2.rs
issue-19135.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
issue-19244.rs
issue-19293.rs
issue-19340-1.rs
issue-19340-2.rs
issue-19358.rs
issue-19367.rs
issue-19398.rs
issue-19404.rs Deprecate Reflect 2016-10-12 08:40:22 +13:00
issue-19479.rs
issue-19499.rs
issue-19631.rs
issue-19632.rs
issue-19811-escape-unicode.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
issue-19850.rs
issue-19982.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
issue-20009.rs
issue-20055-box-trait.rs
issue-20055-box-unsized-array.rs
issue-20091.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-20174.rs
issue-20186.rs
issue-20313.rs
issue-20343.rs
issue-20389.rs
issue-20396.rs
issue-20414.rs
issue-20427.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
issue-20454.rs
issue-20544.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
issue-20575.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
issue-20616.rs
issue-20644.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-20676.rs
issue-20763-1.rs
issue-20763-2.rs
issue-20797.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-20803.rs add test for #20803 2015-08-28 12:54:17 -04:00
issue-20823.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
issue-20825.rs
issue-20847.rs Add regression test for #20847. 2016-08-06 16:01:12 -04:00
issue-20953.rs
issue-21033.rs
issue-21058.rs rustc: add ReErased to be used by trait selection, MIR and trans. 2016-06-05 13:58:51 +03:00
issue-21140.rs
issue-21174.rs
issue-21245.rs
issue-21291.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
issue-21306.rs
issue-21361.rs
issue-21363.rs
issue-21384.rs
issue-21400.rs Stabilise ? 2016-10-12 08:40:22 +13:00
issue-21402.rs
issue-21475.rs
issue-21486.rs Stabilize const-calling existing const-fns in std 2017-11-26 23:43:44 +01:00
issue-21520.rs
issue-21562.rs
issue-21622.rs
issue-21634.rs travis: Add i586 linux and i686 musl 2017-01-15 18:40:57 -08:00
issue-21655.rs
issue-21721.rs
issue-21726.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
issue-21891.rs
issue-21909.rs
issue-21922.rs Add test for #21922 2015-09-29 10:19:24 -04:00
issue-22008.rs prefer hyphens in test files named after issue numbers 2016-12-19 11:53:32 -08:00
issue-22036.rs
issue-22066.rs Add trailing newlines to files which have no trailing newlines. 2017-12-30 15:50:52 +08:00
issue-22258.rs
issue-22346.rs prefer hyphens in test files named after issue numbers 2016-12-19 11:53:32 -08:00
issue-22356.rs
issue-22375.rs
issue-22403.rs Add test for #22403 2015-10-23 20:15:33 -04:00
issue-22426.rs
issue-22463.rs
issue-22471.rs
issue-22536-copy-mustnt-zero.rs
issue-22546.rs Address comments + Fix rebase 2016-10-27 22:20:25 +03:00
issue-22577.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-22629.rs
issue-22777.rs
issue-22781.rs Add tests 2015-10-25 07:37:21 -04:00
issue-22814.rs Add regression test for #22814 2015-10-12 15:40:47 -04:00
issue-22828.rs
issue-22864-1.rs
issue-22864-2.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
issue-22894.rs Add regression test for #22894. 2016-08-08 18:33:16 -04:00
issue-22992-2.rs Add tests for #17001, #21449, #22992, #23208, #23442 2015-09-08 16:51:21 -04:00
issue-22992.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
issue-23036.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-23208.rs Add tests for #17001, #21449, #22992, #23208, #23442 2015-09-08 16:51:21 -04:00
issue-23261.rs
issue-23304-1.rs Add regression tests for #23304 2015-08-17 09:36:03 -04:00
issue-23304-2.rs Add regression tests for #23304 2015-08-17 09:36:03 -04:00
issue-23311.rs Add tests for issues with the 'E-needtest' label. 2017-03-07 14:01:19 +09:00
issue-23336.rs
issue-23338-ensure-param-drop-order.rs #33490 is closed remove the FIXME 2017-09-04 19:59:16 -04:00
issue-23338-params-outlive-temps-of-body.rs
issue-23406.rs Consistently normalize fn types after erasing lifetimes. 2015-11-14 14:47:49 -08:00
issue-23433.rs Use num::NonZero* instead of NonZero<_> in rustc and tests 2018-03-17 23:07:40 +01:00
issue-23435.rs
issue-23442.rs Add tests for #17001, #21449, #22992, #23208, #23442 2015-09-08 16:51:21 -04:00
issue-23477.rs Correct broken test 2016-06-13 22:27:13 +01:00
issue-23485.rs
issue-23491.rs
issue-23550.rs Only allow using the atomic intrinsics on integer types 2016-03-31 16:03:27 +01:00
issue-23611-enum-swap-in-drop.rs remove excess string allocation 2015-11-05 15:30:34 +01:00
issue-23649-1.rs
issue-23649-2.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-23649-3.rs
issue-23699.rs Add regression test for issue 23699. 2016-11-21 22:02:03 +01:00
issue-23781.rs
issue-23808.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
issue-23825.rs
issue-23833.rs typestrong constant integers 2016-03-10 12:50:12 +01:00
issue-23891.rs Add tests 2015-10-25 07:37:21 -04:00
issue-23898.rs rustc_const_eval: support all unit enum variants. 2017-04-23 11:11:57 +03:00
issue-23958.rs Correct issue number in test 2016-06-02 16:03:12 -04:00
issue-23968-const-not-overflow.rs
issue-23992.rs project: add a recursion limit to "tail-recursive" projections 2015-10-27 16:04:06 +02:00
issue-24085.rs typos: fix a grabbag of typos all over the place 2015-10-08 19:49:31 +01:00
issue-24086.rs
issue-24161.rs
issue-24227.rs
issue-24308.rs
issue-24313.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-24353.rs prefer hyphens in test files named after issue numbers 2016-12-19 11:53:32 -08:00
issue-24389.rs Add test for #24389 2015-09-28 13:39:29 -04:00
issue-24434.rs
issue-24533.rs Add test for #24533 2015-09-16 06:50:24 -04:00
issue-24589.rs
issue-24779.rs
issue-24805-dropck-itemless.rs Add RFC 1238's unsafe_destructor_blind_to_params (UGEH) where needed. 2015-10-06 14:16:49 +02:00
issue-24945-repeat-dash-opts.rs
issue-24947.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
issue-24954.rs Closes #24954 2015-11-03 10:20:45 -02:00
issue-25089.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
issue-25145.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
issue-25180.rs
issue-25185.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
issue-25279.rs
issue-25339.rs
issue-25343.rs middle: reset loop labels while visiting closure 2016-05-02 16:48:36 +02:00
issue-25394.rs
issue-25467.rs sort the existential bounds list in tydecode 2015-09-13 20:59:40 +03:00
issue-25497.rs
issue-25515.rs
issue-25549-multiple-drop.rs
issue-25679.rs
issue-25693.rs syntax: Rewrite parsing of impls 2018-01-14 18:10:05 +03:00
issue-25700-1.rs
issue-25700-2.rs
issue-25746-bool-transmute.rs
issue-25757.rs Fix compiletest so it respects warnings for run-pass. 2016-08-22 16:51:37 -07:00
issue-25810.rs Make RFC 1214 warnings into errors, and rip out the "warn or err" 2015-12-18 12:41:02 -05:00
issue-25916.rs use stalled_on in all obligation types 2016-02-15 19:08:53 +02:00
issue-26095.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
issue-26127.rs prefer hyphens in test files named after issue numbers 2016-12-19 11:53:32 -08:00
issue-26205.rs Fix multiple mutable autoderefs with Box 2015-09-03 14:41:27 -04:00
issue-26251.rs Add tests for #20433, #26251, #28625, #33687 2016-08-27 18:37:27 -04:00
issue-26322.rs Fix tests 2017-12-24 03:02:28 +01:00
issue-26468.rs
issue-26484.rs
issue-26641.rs
issue-26646.rs
issue-26655.rs Stabilize const-calling existing const-fns in std 2017-11-26 23:43:44 +01:00
issue-26709.rs
issue-26802.rs
issue-26805.rs
issue-26873-multifile.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
issue-26873-onefile.rs add tests for #26873 2015-12-18 12:14:15 -05:00
issue-26905.rs Ignore PhantomData when checking CoerceUnsized implementations 2015-09-14 22:02:26 -06:00
issue-26996.rs
issue-26997.rs Add regression test for Issue 26997. 2016-03-21 22:40:28 -04:00
issue-27021.rs Make match discriminant reassignment check more accurate. 2016-07-05 17:27:06 -04:00
issue-27054-primitive-binary-ops.rs implement raw fat pointer ops 2015-09-06 16:11:38 +03:00
issue-27060.rs make accessing packed fields a future-compat warning 2017-11-26 16:12:42 +02:00
issue-27105.rs Add test for #27105 2015-10-16 21:32:06 -04:00
issue-27240.rs
issue-27268.rs
issue-27281.rs
issue-27320.rs Fix compiletest so it respects warnings for run-pass. 2016-08-22 16:51:37 -07:00
issue-27401-dropflag-reinit.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
issue-27583.rs add a regression test for #27583. Fixes #27583. 2015-08-18 17:44:01 -04:00
issue-27639.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
issue-27859.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-27889.rs remove FIXME(#27889) since the issue is already fixed 2018-03-17 20:25:23 +02:00
issue-27890.rs check upvars in closures that are in statics 2015-10-01 15:22:57 +03:00
issue-27901.rs more through normalization in typeck & trans 2017-03-01 16:56:08 +02:00
issue-27997.rs Stabilize const-calling existing const-fns in std 2017-11-26 23:43:44 +01:00
issue-28181.rs create a region-map for types in generics 2015-09-03 13:35:41 +03:00
issue-28279.rs Refactor parsing of trait object types 2017-03-21 23:01:53 +03:00
issue-28550.rs use the infcx tables to check if a closure is Copy 2015-09-24 17:02:07 +03:00
issue-28561.rs update FIXME(#7622) to point to issue 44580 (tracking issue for const generics) 2018-03-17 20:24:49 +02:00
issue-28600.rs Add missing tests for 'E-needstest' labeled issues 2017-03-06 12:52:26 +09:00
issue-28676.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
issue-28777.rs Added a functioning version of the assoc-oddities-3 test case to 2015-12-17 22:14:50 +01:00
issue-28822.rs Whitelisting PatWild for E0022. Fix #28822 2015-10-10 09:27:24 +00:00
issue-28828.rs more through normalization in typeck & trans 2017-03-01 16:56:08 +02:00
issue-28839.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
issue-28871.rs add main fn to test 2015-10-23 11:04:38 -04:00
issue-28936.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
issue-28950.rs test: Update Emscripten failures/passing 2017-10-17 18:46:38 -07:00
issue-28983.rs Fix the fallout 2015-12-18 04:12:31 +03:00
issue-28999.rs require a method callee's type to outlive the call 2015-10-12 23:51:59 +03:00
issue-29030.rs Add test for #29030 2015-10-28 08:52:32 -04:00
issue-29037.rs Add Shared pointer and have {Arc, Rc} use it 2015-10-16 18:35:31 -04:00
issue-29048.rs Regression test for #29048. Fixes #29048. 2015-10-28 18:48:49 -04:00
issue-29053.rs add test for issue #29053 2016-08-08 21:04:51 +02:00
issue-29071-2.rs Fix restrictions when parsing rhs of equalities 2015-10-27 21:55:10 +02:00
issue-29071.rs Add a test for #29071 2015-10-27 21:55:04 +02:00
issue-29092.rs Unit/regression tests for issues #29092, #30018, #30530, #30822. 2016-01-13 14:29:25 +01:00
issue-29147.rs fix pretty 2015-11-15 19:22:32 +02:00
issue-29166.rs Add dropck unsafe escape hatch (UGEH) to vec::IntoIter. 2015-10-20 14:54:38 +02:00
issue-29227.rs Ignore long lines on this test. 2015-11-11 09:02:24 -05:00
issue-29276.rs Add tests for #25810 and #29276 2015-11-23 14:57:28 -05:00
issue-29466.rs Rewrite stmt processing not to recurse to avoid stack overflow if there 2015-11-24 19:31:48 -05:00
issue-29485.rs test: Update Emscripten failures/passing 2017-10-17 18:46:38 -07:00
issue-29488.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
issue-29516.rs Adjust tests for removal of impl Foo for .. {} 2018-01-13 18:48:00 +03:00
issue-29522.rs resolve: don't speculatively create freevars when resolving 2015-11-03 21:08:42 +02:00
issue-29540.rs Don't chain method calls in #[derive(Debug)] 2015-11-03 22:48:28 -08:00
issue-29663.rs test: Update Emscripten failures/passing 2017-10-17 18:46:38 -07:00
issue-29668.rs Rewrite VisiblePrivateTypesVisitor 2015-12-18 04:12:31 +03:00
issue-29710.rs syntax: Use let _ in #[derive(Debug)] 2015-11-09 10:42:58 -08:00
issue-29740.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
issue-29746.rs fix more typos found by codespell. 2018-02-17 17:38:49 +01:00
issue-29844.rs introduce a region unification table and use it in dropck 2015-12-07 19:36:28 +02:00
issue-29914-2.rs Fix ICE on using result of index on a constant to index into a constant 2016-02-13 15:13:10 -05:00
issue-29914-3.rs Fix ICE on using result of index on a constant to index into a constant 2016-02-13 15:13:10 -05:00
issue-29914.rs Fix ICE on using result of index on a constant to index into a constant 2016-02-13 15:13:10 -05:00
issue-29927.rs prefer hyphens in test files named after issue numbers 2016-12-19 11:53:32 -08:00
issue-29948.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
issue-30018-nopanic.rs Unit/regression tests for issues #29092, #30018, #30530, #30822. 2016-01-13 14:29:25 +01:00
issue-30018-panic.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
issue-30081.rs Disable the null check elimination pass 2015-12-02 18:19:10 +01:00
issue-30240.rs handle string literals correctly in match checking 2016-06-09 00:38:38 +03:00
issue-30371.rs add failing run-pass test for #30371 2015-12-14 17:51:52 -05:00
issue-30490.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-30530.rs Unit/regression tests for issues #29092, #30018, #30530, #30822. 2016-01-13 14:29:25 +01:00
issue-30615.rs Fix const trans 2016-03-23 02:10:09 +09:00
issue-30756.rs Check #[thread_local] statics correctly in the compiler. 2017-08-12 12:58:07 +03:00
issue-30891.rs truncate i8-s to i1-s when loading constants 2016-03-04 01:16:23 +02:00
issue-31260.rs coerce fields to the expected field type 2017-06-21 20:28:09 +03:00
issue-31267-additional.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
issue-31267.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
issue-31299.rs address review comments 2016-05-03 18:30:10 +03:00
issue-31597.rs Resolve conflicts and extend the test 2016-03-16 13:22:35 +01:00
issue-31702.rs Ignore the test added in #31717 2016-02-18 22:47:42 -08:00
issue-31776.rs Make private_in_public compatibility lint deny-by-default 2016-08-11 23:19:04 +03:00
issue-32008.rs fix more typos found by codespell. 2018-02-17 17:38:49 +01:00
issue-32292.rs Add trailing newlines to files which have no trailing newlines. 2017-12-30 15:50:52 +08:00
issue-32324.rs Fix mis-uses of projection mode 2016-03-20 13:37:28 -07:00
issue-32389.rs Fix tupling of fn args for rust-call ABI functions 2016-03-21 12:22:29 +01:00
issue-32518.rs Use weak_odr linkage when reusing definitions across codegen units 2016-03-29 16:44:54 +02:00
issue-32805.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
issue-32947.rs ci: Disable optimized tests for asm.js 2018-03-16 12:47:49 -07:00
issue-33096.rs Normalize types before using them in debuginfo. 2016-04-20 02:21:14 +03:00
issue-33185.rs Add test for #33185 2017-09-02 13:01:34 -05:00
issue-33187.rs normalize field types in copy implementations 2017-01-03 21:50:18 +02:00
issue-33202.rs Allow repr attribute on single variant enum. 2016-05-13 12:36:57 -04:00
issue-33287.rs Add a regression test for ICE #33287 2017-04-25 22:57:04 -04:00
issue-33387.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
issue-33461.rs trans: callee: normalize trait_ref before use 2016-05-07 22:05:11 +08:00
issue-33498.rs Add run-pass test for issue 33498 2016-08-07 13:55:08 +02:00
issue-33537.rs mir: don't attempt to promote Unpromotable constant temps. 2016-05-10 21:26:34 +03:00
issue-33687.rs Add tests for #20433, #26251, #28625, #33687 2016-08-27 18:37:27 -04:00
issue-33770.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-33903.rs Added tests for non-obvious builtin indexing 2018-01-07 01:30:21 +00:00
issue-33992.rs Add trailing newlines to files which have no trailing newlines. 2017-12-30 15:50:52 +08:00
issue-34053.rs Stabilize drop_types_in_const. 2017-09-09 17:39:30 +03:00
issue-34074.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
issue-34427.rs Workaround #34427 by using memset of 0 on ARM to set the discriminant. 2016-09-20 15:58:46 +02:00
issue-34503.rs fail obligations that depend on erroring obligations 2016-07-02 02:20:45 +03:00
issue-34569.rs prefer hyphens in test files named after issue numbers 2016-12-19 11:53:32 -08:00
issue-34571.rs Add a test for issue 34571 2017-03-17 00:21:40 +09:00
issue-34751.rs Add missing tests for 'E-needstest' labeled issues 2017-03-06 12:52:26 +09:00
issue-34780.rs Add tests for issues with the E-needstest label 2017-07-25 12:23:16 +09:00
issue-34796.rs prefer hyphens in test files named after issue numbers 2016-12-19 11:53:32 -08:00
issue-34798.rs lint/ctypes: Don't warn on non-unsized structs with PhantomData. 2017-02-03 22:00:40 +01:00
issue-34932.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
issue-35376.rs Add trailing newlines to files which have no trailing newlines. 2017-12-30 15:50:52 +08:00
issue-35423.rs Add test for #35423 2016-08-28 19:16:13 -04:00
issue-35546.rs add missing test 2016-09-13 18:33:35 -04:00
issue-35600.rs Check namespaces when resolving associated items in typeck 2017-10-15 11:58:32 +01:00
issue-35815.rs rustc_trans: don't round up the DST prefix size to its alignment. 2016-08-27 08:51:55 +03:00
issue-36023.rs Remove two obsolete min-llvm-version tests 2017-10-18 07:54:35 -07:00
issue-36036-associated-type-layout.rs Fix issue #36036. 2016-09-05 12:57:00 +02:00
issue-36053.rs core: Stabilize FusedIterator 2018-03-03 14:14:03 +01:00
issue-36075.rs fix broken type parameter indexing logic in wfcheck 2016-08-30 21:27:03 +03:00
issue-36139-normalize-closure-sig.rs Normalize the function signature of closures 2016-08-31 16:43:14 +12:00
issue-36260.rs prefer hyphens in test files named after issue numbers 2016-12-19 11:53:32 -08:00
issue-36278-prefix-nesting.rs For size of struct P<T>(Q<T>), don't double-count the prefix added by Q. 2016-09-08 19:18:07 +02:00
issue-36381.rs loosen assertion against proj in collector 2016-10-03 11:52:36 -04:00
issue-36401.rs use adt::trans_const when translating constant closures and tuples 2016-09-12 01:53:43 +03:00
issue-36474.rs Up the LLVM 2016-09-17 18:40:40 +03:00
issue-36744-bitcast-args-if-needed.rs Some tests to check that lifetime parametric fn's do not trip up LLVM. 2016-10-12 19:29:50 +02:00
issue-36744-without-calls.rs Some tests to check that lifetime parametric fn's do not trip up LLVM. 2016-10-12 19:29:50 +02:00
issue-36768.rs Add regression test. 2016-09-27 21:51:44 +00:00
issue-36786-resolve-call.rs Resolve the callee type in check_call before autoderef 2016-09-29 17:07:03 +13:00
issue-36792.rs Stabilize conservative_impl_trait 2018-03-26 10:43:03 +02:00
issue-36816.rs Add regression test. 2016-09-29 03:52:09 +00:00
issue-36856.rs force i1 booleans to i8 when comparing 2016-10-04 05:56:02 -04:00
issue-36936.rs stop having identity casts be lexprs 2016-10-04 01:13:36 +03:00
issue-36954.rs use DefId's in const eval for cross-crate const fn's 2016-11-03 12:05:45 +01:00
issue-37109.rs normalize tuple pair types 2016-10-12 12:20:10 +02:00
issue-37175.rs Add regression test. 2016-10-17 23:00:53 +00:00
issue-37222.rs trans: pad const structs to aligned size 2016-10-20 22:27:06 +02:00
issue-37598.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
issue-37655.rs introduce a fudge_regions_if_ok to address false region edges 2016-11-08 18:58:12 -05:00
issue-37686.rs Work around a borrow surviving too long (fixes #37686) 2016-11-10 14:43:46 +01:00
issue-37725.rs Make Clone a lang item and generate builtin impls. 2017-08-14 15:07:21 +02:00
issue-37733.rs Fix empty lifetime list or one with trailing comma being rejected 2016-11-13 17:55:17 +01:00
issue-37991.rs fix function arguments in constant promotion 2017-01-11 09:50:24 +02:00
issue-38002.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
issue-38033.rs evaluate obligations in LIFO order during closure projection 2016-11-29 01:09:30 +02:00
issue-38074.rs ci: Disable optimized tests for asm.js 2018-03-16 12:47:49 -07:00
issue-38091.rs Add tests to fixed issues. 2018-01-11 13:03:25 +09:00
issue-38190.rs macros: fix the expected paths for a non-inline module matched by an item fragment. 2016-12-07 10:56:55 +00:00
issue-38226.rs Extend middle::reachable to also consider provided trait methods. 2016-12-08 17:06:56 -05:00
issue-38437.rs clear discriminant drop flag at the bottom of a ladder 2016-12-25 18:44:19 +02:00
issue-38556.rs Fix import resolution bug and fold all idents in the AST. 2016-12-23 02:16:31 +00:00
issue-38715.rs Fix regression with duplicate #[macro_export] macro_rules!. 2017-01-04 08:03:23 +00:00
issue-38727.rs Fix ICE on i686 when calling immediate() on OperandValue::Ref in return 2017-01-05 12:59:50 -07:00
issue-38763.rs Stabilize i128_type 2018-03-26 08:36:50 -05:00
issue-38942.rs Add regression test for issue #38942 2017-01-19 18:22:46 -05:00
issue-38987.rs Stabilize i128_type 2018-03-26 08:36:50 -05:00
issue-39089.rs Fix ICE when compiling fn f<T: ?for<'a> Sized>() {} 2017-01-17 22:52:43 +01:00
issue-39292.rs erase late bound regions in get_vtable_methods() 2017-02-16 13:56:06 -05:00
issue-39367.rs store the normalized types of statics in MIR Lvalues 2017-03-01 16:56:13 +02:00
issue-39467.rs Add tests for issues with the E-needstest label 2017-07-25 12:23:16 +09:00
issue-39548.rs rustc_const_eval: always demand typeck_tables for evaluating constants. 2017-02-25 18:35:26 +02:00
issue-39709.rs Add syntax::ext::tt::quoted::{TokenTree, ..} and remove tokenstream::TokenTree::Sequence. 2017-02-28 22:14:29 +00:00
issue-39720.rs ci: Disable optimized tests for asm.js 2018-03-16 12:47:49 -07:00
issue-39808.rs remove comments that were tripping up pretty printer 2017-03-30 08:18:03 -04:00
issue-39823.rs trans: don't ICE when trying to create ADT trans-items 2017-02-23 20:03:18 +02:00
issue-39827.rs Addresses comments in PR #43836 2017-08-13 19:28:04 +10:00
issue-39984.rs add regression test for #39984 2017-03-22 11:13:09 -04:00
issue-40003.rs Add test for #40003. 2017-10-15 12:58:05 -07:00
issue-40085.rs Allow types passed to [] to coerce, like .index() 2017-03-01 00:15:13 +00:00
issue-40136.rs remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
issue-40235.rs Fix missing WhileLet pattern scope 2017-03-03 09:40:44 -08:00
issue-40408.rs Parse 0e+10 as a valid floating-point literal 2017-03-18 21:16:16 +09:00
issue-40469.rs Fix regression when include!()ing a macro_rules! containing a $crate:: path. 2017-03-17 22:20:41 +00:00
issue-40770.rs Fix ICE with nested macros in certain situations. 2017-03-25 04:04:13 +00:00
issue-40847.rs Fix regression involving identifiers in macro_rules! patterns. 2017-07-13 14:12:57 -07:00
issue-40883.rs Update LLVM to pick StackColoring improvement 2017-06-19 20:55:56 +03:00
issue-40951.rs generalize type variables too 2017-04-11 20:32:47 -04:00
issue-40962.rs Fix bug parsing #[derive] macro invocations. 2017-04-03 23:02:49 +00:00
issue-41053.rs cstore: return an immutable borrow from visible_parent_map 2017-04-04 18:11:03 +03:00
issue-41213.rs rustc_typeck: consolidate adjustment composition 2017-04-13 21:27:35 +03:00
issue-41272.rs Fixed aesthetics and test 2017-04-15 17:21:53 +05:30
issue-41298.rs propagate obligations during overlap check 2017-04-19 07:20:36 -04:00
issue-41394.rs rustc_const_eval: support all unit enum variants. 2017-04-23 11:11:57 +03:00
issue-41479.rs Added test for #41479 from @eddyb. 2017-04-25 21:18:30 +10:00
issue-41498.rs typeck: resolve type vars before calling try_index_step 2017-04-27 16:44:27 +03:00
issue-41604.rs refactor the handling of lvalue ops 2017-04-30 15:49:04 +03:00
issue-41628.rs Don't ever warn about #[used] items being dead code. 2017-04-29 23:18:15 +03:00
issue-41677.rs add a WF obligation if a type variable appears in bivariant position 2017-05-11 14:52:26 -04:00
issue-41696.rs mark calls in the unwind path as !noinline 2017-06-20 22:02:49 +03:00
issue-41744.rs rustc_trans: do not attempt to truncate an i1 const to i1. 2017-05-12 00:14:31 +03:00
issue-41803.rs Fix regression in macro_rules! name matching. 2017-05-15 09:26:26 +00:00
issue-41849-variance-req.rs do not fetch variance for items when equating 2017-05-11 10:54:19 -04:00
issue-41888.rs use Eq instead of Lt in loop 2017-05-28 10:43:24 +03:00
issue-41936-variance-coerce-unsized-cycle.rs use equality in the coerce-unsized check 2017-05-15 17:36:07 -04:00
issue-42007.rs Refactor: Move the mutable parts out of LintStore. Fix #42007. 2017-05-17 16:09:39 +08:00
issue-42148.rs Add tests to fixed issues. 2018-01-11 13:03:25 +09:00
issue-42210.rs extend struct_tail to operate over closures 2017-05-26 16:36:40 -04:00
issue-42453.rs Fix hygene issue when deriving Debug 2018-03-11 10:03:23 -04:00
issue-42463.rs rustc_typeck: do not overlap a borrow of TypeckTables with method lookup. 2017-06-06 21:48:16 +03:00
issue-42467.rs rustc: T: 'empty always holds forall T. 2017-06-06 19:50:01 +03:00
issue-42552.rs register the obligations from wf::implied_bounds 2017-06-17 05:40:39 -04:00
issue-42679.rs Use T as the subpattern type of Box<T> 2017-06-18 16:07:26 +09:00
issue-42747.rs Memoize types in is_representable to avoid exponential worst-case 2017-06-19 18:44:57 +03:00
issue-42956.rs Add tests to fixed issues. 2018-01-11 13:03:25 +09:00
issue-43057.rs Avoid calling the column!() macro in panic 2017-08-08 11:35:09 +02:00
issue-43132.rs save the subobligations as well 2017-07-30 11:07:28 -07:00
issue-43205.rs Fixes issue #43205: ICE in Rvalue::Len evaluation. 2017-08-23 23:10:03 +10:00
issue-43291.rs Force appropriate extension when converting from int to ptr #43291 2018-01-02 20:23:13 -08:00
issue-43355.rs convert errors to warnings 2017-12-06 00:43:47 +02:00
issue-43357.rs rustc_const_eval: keep track of the appropriate ParamEnv. 2017-07-27 20:59:40 +03:00
issue-43483.rs Add tests on fixed ICEs 2017-12-30 19:02:25 +09:00
issue-43692.rs Accept underscores in unicode escapes 2017-08-17 20:03:32 +02:00
issue-43853.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
issue-43910.rs rustc: Add Local to the HIR map of parents 2017-08-18 10:36:39 -07:00
issue-43923.rs register fn-ptr coercion obligations out of a snapshot 2017-08-21 14:11:57 +03:00
issue-44247.rs Check namespaces when resolving associated items in typeck 2017-10-15 11:58:32 +01:00
issue-44373.rs rustc_mir: promote references of statics from other statics. 2017-12-07 01:18:34 +02:00
issue-44402.rs stabilise feature(never_type) 2018-03-14 12:44:51 +08:00
issue-44730.rs rustc: Don't use DelimToken::None if possible 2017-09-21 08:13:25 -07:00
issue-44851.rs Fix #44851 by visiting tokens in DefCollector and BuildReducedGraphVisitor 2017-10-23 17:41:25 +09:00
issue-45124.rs Mark block exits as reachable if the block can break. 2017-10-15 21:19:00 -07:00
issue-45152.rs Add tests to fixed ICEs 2017-12-26 19:24:48 +09:00
issue-45425.rs rustc_typeck: use subtyping on the LHS of binops. 2017-10-31 17:34:46 +02:00
issue-45731.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-46069.rs avoid type-live-for-region obligations on dummy nodes 2017-11-25 22:57:59 +02:00
issue-46095.rs Added tests for non-obvious builtin indexing 2018-01-07 01:30:21 +00:00
issue-46519.rs rustc_trans: don't write discriminants for uninhabited variants 2017-12-05 23:50:41 +01:00
issue-46553.rs deny instead of warn 2017-12-08 03:13:13 -05:00
issue-46845.rs Only mark unions as uninhabited if all of their fields are uninhabited. Fixes #46845. 2017-12-19 17:24:38 -06:00
issue-46855.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
issue-46920-byte-array-patterns.rs avoid double-unsizing arrays in bytestring match lowering 2018-01-16 23:23:11 +02:00
issue-46959.rs Stabilize conservative_impl_trait 2018-03-26 10:43:03 +02:00
issue-46964.rs check_match: fix handling of privately uninhabited types 2018-01-13 21:17:19 +02:00
issue-47139-1.rs add regression test 2018-01-26 11:44:24 -05:00
issue-47139-2.rs add regression test 2018-01-26 11:44:24 -05:00
issue-47364.rs Upgrade LLVM to incorporate a fix for #47364 2018-01-26 09:57:34 +01:00
issue-47638.rs rustc_trans: keep LLVM types for trait objects anonymous. 2018-01-31 00:23:25 +02:00
issue-47673.rs Stabilize use_nested_groups 2018-02-05 10:23:40 +01:00
issue-47703-1.rs Added tests for #47703 2018-02-14 18:16:53 +00:00
issue-47703.rs Added tests for #47703 2018-02-14 18:16:53 +00:00
issue-47722.rs Fix ref-to-ptr coercions not working with NLL in certain cases 2018-01-29 23:25:54 -05:00
issue-47789.rs Fix ICE when assigning references to a static mut with NLL 2018-01-30 21:44:35 -05:00
issue-48159.rs Implementation of #[repr(packed(n))] RFC 1399. 2018-04-11 22:13:13 +10:00
issue-48508-aux.rs Add test for #48508 2018-02-26 19:25:10 +11:00
issue-48508.rs Add ignore-pretty for issue-48506.rs 2018-03-01 17:51:14 +11:00
issue-48551.rs Update issue-48551.rs 2018-02-28 13:04:12 -05:00
issue-48962.rs fixes internal compiler error: 2018-03-26 22:07:40 +02:00
issue-49556.rs Fix ICE with impl Trait 2018-04-06 23:17:25 +09:00
issue-49588-non-shorthand-field-patterns-in-pattern-macro.rs in which the non-shorthand patterns lint keeps its own counsel in macros 2018-04-09 08:53:30 -07:00
issue2170exe.rs
issue28498-must-work-ex1.rs shorten URLs to placate make tidy. 2015-10-06 16:51:20 +02:00
issue28498-must-work-ex2.rs shorten URLs to placate make tidy. 2015-10-06 16:51:20 +02:00
issue28498-ugeh-ex1.rs placate check-pretty via comment rearrangement. 2015-10-08 23:02:42 +02:00
issue28498-ugeh-with-lifetime-param.rs Added tests illustrating when and when not to use the UGEH attribute w.r.t. a lifetime param. 2015-10-08 14:43:45 +02:00
issue28498-ugeh-with-passed-to-fn.rs Added tests illustrating when and when not to use the UGEH attribute w.r.t. types in negative position. 2015-10-08 14:43:45 +02:00
issue28498-ugeh-with-trait-bound.rs Added tests illustrating when and when not to use the UGEH attribute w.r.t. a trait bound. 2015-10-08 14:43:44 +02:00
issue29927-1.rs add unit tests for #29927 2015-12-06 12:59:53 +01:00
issue_3136_b.rs
issue_9155.rs
istr.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
item-attributes.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
item-name-overload.rs
iter-cloned-type-inference.rs
iter-range.rs
iter-step-overflow-debug.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
iter-step-overflow-ndebug.rs add max value from iterator 2016-11-02 10:11:53 -04:00
iter-sum-overflow-debug.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
iter-sum-overflow-ndebug.rs Inherit overflow checks for sum and product 2016-09-10 10:06:33 -07:00
iter-sum-overflow-overflow-checks.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
iter-zip.rs Expand .zip() specialization to .map() and .cloned() 2016-10-17 10:58:21 +02:00
ivec-pass-by-value.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
ivec-tag.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
keyword-changes-2012-07-31.rs
kindck-implicit-close-over-mut-var.rs
kindck-owned-trait-contains-1.rs
kinds-in-metadata.rs
labeled-break.rs
lambda-infer-unresolved.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
lambda-var-hygiene.rs Miscellaneous cleanup for old issues. 2015-09-20 11:37:08 +01:00
large-records.rs
last-use-in-block.rs
last-use-in-cap-clause.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
last-use-is-capture.rs
lazy-and-or.rs
lazy-init.rs
leak-unique-as-tydesc.rs
let-assignability.rs
let-destruct-ref.rs
let-var-hygiene.rs
lex-bare-cr-nondoc-comment.rs Allow bare CR in ////-style comment. 2017-05-08 22:29:24 +09:00
lexer-crlf-line-endings-string-literal-doc-comment.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
lexical-scoping.rs Resolve: fix #23880, a scoping bug 2016-01-26 04:16:58 +00:00
lib-defaults.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
linear-for-loop.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
link-cfg-works.rs rustc: Implement #[link(cfg(..))] and crt-static 2016-11-16 07:00:09 -08:00
link-section.rs
linkage1.rs test: Update Emscripten failures/passing 2017-10-17 18:46:38 -07:00
lint-cap.rs
lint-dead-code-associated-type.rs lint: mark associated types as live for the dead_code pass 2016-03-09 11:36:05 -08:00
lint-dead-code-variant.rs
lint-expr-stmt-attrs-for-early-lints.rs Add a test 2015-12-22 00:56:48 +01:00
lint-non-camel-case-types-non-uppercase-statics-unicode.rs
lint-non-camel-case-with-trailing-underscores.rs
lint-unknown-lints-at-crate-level.rs rustc: Fix unknown_lints next to an unknown lint 2017-08-13 08:09:46 -07:00
list.rs
liveness-assign-imm-local-after-loop.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
liveness-assign-imm-local-after-ret.rs Fix compiletest so it respects warnings for run-pass. 2016-08-22 16:51:37 -07:00
liveness-loop-break.rs
liveness-move-in-loop.rs
llvm-pr32379.rs update LLVM with fix for PR32379 2017-03-24 00:54:23 +02:00
log-err-phi.rs
log-knows-the-names-of-variants-in-std.rs
log-knows-the-names-of-variants.rs
log-poly.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
log_syntax-trace_macros-macro-locations.rs
logging-only-prints-once.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
logging_before_rt_started.rs
long-while.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
loop-break-cont-1.rs
loop-break-cont.rs
loop-break-value.rs stabilise feature(never_type) 2018-03-14 12:44:51 +08:00
loop-diverges.rs
loop-label-shadowing.rs
loop-labeled-break-value.rs
loop-no-reinit-needed-post-bot.rs
loop-scope.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
lto-many-codegen-units.rs rustc: Enable LTO and multiple codegen units 2017-09-30 00:22:15 -07:00
lto-still-runs-thread-dtors.rs std: Flag Windows TLS dtor symbol as #[used] 2017-11-24 14:28:12 -08:00
lub-glb-with-unbound-infer-var.rs make LUB/GLB of higher-ranked things actually do EQ 2017-11-17 10:32:15 -05:00
macro-2.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
macro-at-most-once-rep.rs No separator for ?. No ? as a separator. 2018-04-05 19:50:08 -05:00
macro-attribute-expansion.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
macro-attributes.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
macro-block-nonterminal.rs
macro-comma-behavior.rs macro-commas test cleanup 2018-02-14 02:15:27 -05:00
macro-comma-support.rs ignore-pretty for the macro-comma-support test 2018-02-24 20:13:07 -05:00
macro-crate-def-only.rs
macro-crate-nonterminal-renamed.rs
macro-crate-nonterminal.rs
macro-crate-use.rs
macro-deep_expansion.rs
macro-delimiter-significance.rs Use box syntax in vec! macro 2016-02-25 22:08:23 -05:00
macro-doc-comments.rs
macro-doc-escapes.rs
macro-doc-raw-str-hashes.rs Use different numbers of #s when expanding documentation comments 2016-01-19 06:24:08 +09:00
macro-export-inner-module.rs
macro-first-set.rs Only match a fragment specifier the if it starts with certain tokens. 2017-07-07 14:12:12 +08:00
macro-follow.rs implement RFC amendment 1494 2016-04-13 23:25:42 -04:00
macro-followed-by-seq.rs
macro-include-items.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
macro-interpolation.rs
macro-invocation-in-count-expr-fixed-array-type.rs
macro-lifetime-used-with-bound.rs Add feature gate macro_lifetime_matcher 2017-12-28 11:33:44 -05:00
macro-lifetime-used-with-labels.rs Add feature gate macro_lifetime_matcher 2017-12-28 11:33:44 -05:00
macro-lifetime-used-with-static.rs Add feature gate macro_lifetime_matcher 2017-12-28 11:33:44 -05:00
macro-lifetime.rs Add feature gate macro_lifetime_matcher 2017-12-28 11:33:44 -05:00
macro-meta-items.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
macro-method-issue-4621.rs
macro-multiple-items.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
macro-named-default.rs Parse macros named "default" correctly. 2017-05-31 19:24:01 +09:00
macro-nested_definition_issue-31946.rs add test for nested macro def (#31946) 2017-03-21 16:27:35 -04:00
macro-nested_expr.rs Add tests to fixed ICEs 2017-12-26 19:24:48 +09:00
macro-nested_stmt_macros.rs
macro-nt-list.rs
macro-of-higher-order.rs Add regression test. 2016-07-19 20:22:20 +00:00
macro-pat-follow.rs After RFC amendment 1384, FOLLOW(pat) includes |, so update tests accordingly. 2016-01-07 20:53:33 +01:00
macro-pat-neg-lit.rs syntax: allow negative integer literal expression to be interpolated as pattern 2017-06-27 18:39:38 +00:00
macro-pat.rs
macro-path.rs
macro-pub-matcher.rs crate shorthand visibility modifier 2017-10-22 23:58:13 -07:00
macro-reexport-no-intermediate-use.rs
macro-reexport.rs
macro-seq-followed-by-seq.rs Updated future-proofing test, removed outdated test, and added 2016-01-07 20:53:33 +01:00
macro-stability.rs check stability of macro invocations 2018-03-07 16:52:28 -08:00
macro-stmt.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
macro-stmt_macro_in_expr_macro.rs
macro-tt-followed-by-seq.rs
macro-use-all-and-none.rs
macro-use-all.rs
macro-use-both.rs
macro-use-one.rs
macro-with-attrs1.rs
macro-with-attrs2.rs
macro-with-braces-in-expr-position.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
macro_with_super_2.rs
macros-in-extern.rs expand macro invocations in extern {} blocks 2018-04-03 13:16:11 -07:00
match-arm-statics.rs Use the actual discriminant instead of always choosing the dataful variant 2018-03-27 17:19:41 +02:00
match-beginning-vert.rs stabilize match_beginning_vert 2018-01-30 16:00:55 -06:00
match-borrowed_str.rs
match-bot-2.rs
match-bot.rs
match-byte-array-patterns.rs handle mixed byte literal and byte array patterns 2016-10-26 23:10:30 +03:00
match-enum-struct-0.rs
match-enum-struct-1.rs
match-implicit-copy-unique.rs
match-in-macro.rs
match-join.rs
match-naked-record-expr.rs
match-naked-record.rs
match-path.rs
match-pattern-bindings.rs
match-pattern-lit.rs
match-pattern-no-type-params.rs
match-pattern-simple.rs
match-phi.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
match-pipe-binding.rs work around weird match arm lifetimes 2017-12-06 02:10:24 +02:00
match-range-infer.rs
match-range-static.rs
match-range.rs add exclusive range patterns under a feature gate 2017-01-19 10:13:32 +01:00
match-reassign.rs
match-ref-binding-in-guard-3256.rs
match-ref-binding-mut-option.rs
match-ref-binding-mut.rs
match-ref-binding.rs
match-ref-unsized.rs
match-static-const-rename.rs
match-str.rs
match-struct-0.rs
match-tag.rs
match-unique-bind.rs
match-unsized.rs fix translation of unsized types and arrays 2016-06-08 23:58:53 +03:00
match-value-binding-in-guard-3291.rs
match-var-hygiene.rs
match-vec-alternatives.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
match-vec-rvalue.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
match-with-ret-arm.rs
max-min-classes.rs
method-argument-inference-associated-type.rs resolve type vars with obligations in more places 2017-08-29 19:45:32 +03:00
method-attributes.rs
method-early-bound-lifetimes-on-self.rs
method-mut-self-modifies-mut-slice-lvalue.rs tests: replace "lvalue" terminology with "place". 2018-01-29 11:48:12 +02:00
method-normalize-bounds-issue-20604.rs
method-projection.rs
method-recursive-blanket-impl.rs
method-self-arg-aux1.rs
method-self-arg-aux2.rs
method-self-arg-trait.rs
method-self-arg.rs
method-two-trait-defer-resolution-1.rs
method-two-trait-defer-resolution-2.rs
method-two-traits-distinguished-via-where-clause.rs
method-where-clause.rs
mid-path-type-params.rs
minmax-stability-issue-23687.rs std: Clean out deprecated APIs 2016-03-12 12:31:13 -08:00
mir-typeck-normalize-fn-sig.rs normalize fn sig as part of reification 2017-12-13 06:03:28 -05:00
mir_adt_construction.rs Fix indentation in test. 2017-02-09 03:10:33 -08:00
mir_ascription_coercion.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_augmented_assignments.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_autoderef.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_boxing.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_build_match_comparisons.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_call_with_associated_type.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_calls_to_shims.rs stabilise feature(never_type) 2018-03-14 12:44:51 +08:00
mir_cast_fn_ret.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_coercion_casts.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_coercions.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_constval_adts.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_drop_order.rs tests: replace "lvalue" terminology with "place". 2018-01-29 11:48:12 +02:00
mir_early_return_scope.rs Properly invalidate the early exit cache 2016-08-17 21:09:30 +03:00
mir_fat_ptr.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_fat_ptr_drop.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_heavy_promoted.rs ci: Disable optimized tests for asm.js 2018-03-16 12:47:49 -07:00
mir_match_arm_guard.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_misc_casts.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
mir_overflow_off.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_raw_fat_ptr.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
mir_refs_correct.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_small_agg_arg.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_struct_with_assoc_ty.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_temp_promotions.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_trans_array.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_trans_array_2.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_trans_call_converging.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_trans_calls.rs MIR: hide .rodata constants vs by-ref ABI clash in trans. 2017-11-17 01:37:10 +02:00
mir_trans_calls_variadic.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
mir_trans_critical_edge.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_trans_spike1.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_trans_switch.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_trans_switchint.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_void_return.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_void_return_2.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mod-inside-fn.rs
mod-view-items.rs
mod_dir_implicit.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
mod_dir_path.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
mod_dir_path2.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
mod_dir_path3.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
mod_dir_path_multi.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
mod_dir_recursive.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
mod_dir_simple.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
mod_file.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
mod_file_aux.rs
mod_file_with_path_attr.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
module-qualified-struct-destructure.rs
monad.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
monomorphize-abi-alignment.rs
monomorphized-callees-with-ty-params-3314.rs
move-1-unique.rs
move-2-unique.rs
move-2.rs
move-3-unique.rs
move-4-unique.rs
move-4.rs
move-arg-2-unique.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
move-arg-2.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
move-arg.rs
move-nullary-fn.rs
move-out-of-field.rs
move-scalar.rs
move-self.rs
moves-based-on-type-capture-clause.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
moves-based-on-type-cross-crate.rs
msvc-data-only.rs Converted test to rpass. 2015-09-25 18:48:54 -07:00
multi-let.rs
multi-panic.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
multibyte.rs
multidispatch-conditional-impl-not-considered.rs
multidispatch1.rs
multidispatch2.rs
multiline-comment.rs
multiple-reprs.rs Fix and improve test for enum repr sizes 2017-11-28 00:54:16 -05:00
multiple-trait-bounds.rs
mut-function-arguments.rs
mut-in-ident-patterns.rs
mut-vstore-expr.rs
mutability-inherits-through-fixed-length-vec.rs
mutable-alias-vec.rs
mutual-recursion-group.rs
namespaced-enum-emulate-flat-xc.rs
namespaced-enum-emulate-flat.rs
namespaced-enum-glob-import-xcrate.rs
namespaced-enum-glob-import.rs
namespaced-enums-xcrate.rs
namespaced-enums.rs
native-print-no-runtime.rs
negative.rs
nested-block-comment.rs
nested-class.rs
nested-enum-same-names.rs
nested-exhaustive-match.rs
nested-function-names-issue-8587.rs
nested-matchs.rs
nested-pattern.rs
nested-vec-1.rs
nested-vec-2.rs
nested-vec-3.rs Stabilize const-calling existing const-fns in std 2017-11-26 23:43:44 +01:00
nested_item_main.rs
never-result.rs stabilise feature(never_type) 2018-03-14 12:44:51 +08:00
never-type-rvalues.rs Add clarifying comment regarding the trailing type of a block 2018-01-26 15:39:19 +00:00
never_coercions.rs Add explanations to tests 2016-08-13 21:37:09 +08:00
new-box-syntax.rs Remove all unstable placement features 2018-04-03 11:02:34 +02:00
new-box.rs
new-impl-syntax.rs
new-import-syntax.rs
new-style-constants.rs
new-style-fixed-length-vec.rs
new-unicode-escapes.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
new-unsafe-pointers.rs
newlambdas-ret-infer.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
newlambdas-ret-infer2.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
newlambdas.rs
newtype-polymorphic.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
newtype-struct-drop-run.rs
newtype-struct-with-dtor.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
newtype-struct-xc-2.rs
newtype-struct-xc.rs
newtype-temporary.rs
newtype.rs
next-power-of-two-overflow-debug.rs Stabilize i128_type 2018-03-26 08:36:50 -05:00
next-power-of-two-overflow-ndebug.rs Stabilize i128_type 2018-03-26 08:36:50 -05:00
nil-decl-in-foreign.rs
nil-pattern.rs
no-core-1.rs
no-drop-flag-size.rs Remove drop flags from structs and enums implementing Drop. 2016-08-24 13:23:37 +03:00
no-landing-pads.rs rustc: Prepare to enable ThinLTO by default 2017-11-30 07:17:53 -08:00
no-std-1.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
no-std-2.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
no-std-3.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
no-stdio.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
non-built-in-quote.rs
non-legacy-modes.rs
nondrop-cycle.rs
nonzero-enum.rs Make constant field access account for field reordering. 2016-12-14 12:28:19 -05:00
nul-characters.rs
nullable-pointer-ffi-compat.rs tests: Avoid transmuting from fn item types. 2016-03-09 16:45:29 +02:00
nullable-pointer-iotareduction.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
nullable-pointer-opt-closures.rs
nullable-pointer-size.rs
nullary-or-pattern.rs
num-wrapping.rs Manuall rebase of @Migi pull/41336 2017-09-03 09:12:22 -04:00
numeric-fields.rs Stabilize RFC 1506 - clarified ADT kinds 2017-04-20 14:05:46 +01:00
numeric-method-autoexport.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
object-lifetime-default-default-to-static.rs
object-lifetime-default-from-ref-struct.rs rustc: move object default lifetimes to resolve_lifetimes. 2017-01-28 02:56:46 +02:00
object-lifetime-default-from-rptr-box.rs
object-lifetime-default-from-rptr-mut.rs
object-lifetime-default-from-rptr-struct.rs
object-lifetime-default-from-rptr.rs rustc: move object default lifetimes to resolve_lifetimes. 2017-01-28 02:56:46 +02:00
object-method-numbering.rs
object-one-type-two-traits.rs
object-safety-sized-self-by-value-self.rs
object-safety-sized-self-generic-method.rs
object-safety-sized-self-return-Self.rs
objects-coerce-freeze-borrored.rs
objects-owned-object-borrowed-method-headerless.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
objects-owned-object-owned-method.rs
once-move-out-on-heap.rs
one-tuple.rs
op-assign-builtins-by-ref.rs Missing trailing newline 2017-09-12 16:56:40 -04:00
opeq.rs
operator-associativity.rs
operator-multidispatch.rs
operator-overloading.rs
optimization-fuel-0.rs Tests for -Z fuel=foo=n 2017-04-11 14:36:08 +03:00
optimization-fuel-1.rs Remove excessive trailing newlines. 2017-12-30 15:50:52 +08:00
option-ext.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
option-unwrap.rs
optional_comma_in_match_arm.rs Ignore pretty-test 2017-07-18 15:21:18 +03:00
or-pattern.rs
order-drop-with-match.rs
out-of-stack.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
out-pointer-aliasing.rs
output-slot-variants.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
over-constrained-vregs.rs
overlap-doesnt-conflict-with-specialization.rs Put overlapping impls behind feature gate, add tests 2017-04-14 22:05:11 -04:00
overlap-permitted-for-marker-traits-neg.rs update tests slightly 2017-04-14 22:05:11 -04:00
overlap-permitted-for-marker-traits.rs update tests slightly 2017-04-14 22:05:11 -04:00
overloaded-autoderef-count.rs
overloaded-autoderef-indexing.rs
overloaded-autoderef-order.rs #12808 is closed remove the FIXME 2017-09-04 20:06:39 -04:00
overloaded-autoderef-vtable.rs
overloaded-autoderef-xcrate.rs
overloaded-autoderef.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
overloaded-calls-object-one-arg.rs
overloaded-calls-object-two-args.rs
overloaded-calls-object-zero-args.rs
overloaded-calls-param-vtables.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
overloaded-calls-simple.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
overloaded-calls-zero-args.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
overloaded-deref-count.rs
overloaded-deref.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
overloaded-index-assoc-list.rs
overloaded-index-autoderef.rs
overloaded-index-in-field.rs
overloaded-index.rs
overloaded_deref_with_ref_pattern.rs
overloaded_deref_with_ref_pattern_issue15609.rs
owned-implies-static.rs
packed-struct-borrow-element.rs Implementation of #[repr(packed(n))] RFC 1399. 2018-04-11 22:13:13 +10:00
packed-struct-drop-aligned.rs fix codegen of drops of fields of packed structs 2017-11-26 16:12:42 +02:00
packed-struct-generic-layout.rs undo changes to run-pass tests that aren't errors anymore 2016-03-11 09:44:11 +01:00
packed-struct-generic-size.rs Implementation of #[repr(packed(n))] RFC 1399. 2018-04-11 22:13:13 +10:00
packed-struct-layout.rs test: Update Emscripten failures/passing 2017-10-17 18:46:38 -07:00
packed-struct-match.rs Implementation of #[repr(packed(n))] RFC 1399. 2018-04-11 22:13:13 +10:00
packed-struct-optimized-enum.rs rustc: do not raise the alignment of optimized enums to the niche's alignment. 2017-12-20 03:45:40 +02:00
packed-struct-size-xc.rs Implementation of #[repr(packed(n))] RFC 1399. 2018-04-11 22:13:13 +10:00
packed-struct-size.rs Implementation of #[repr(packed(n))] RFC 1399. 2018-04-11 22:13:13 +10:00
packed-struct-vec.rs Implementation of #[repr(packed(n))] RFC 1399. 2018-04-11 22:13:13 +10:00
packed-tuple-struct-layout.rs test: Update Emscripten failures/passing 2017-10-17 18:46:38 -07:00
packed-tuple-struct-size.rs Implementation of #[repr(packed(n))] RFC 1399. 2018-04-11 22:13:13 +10:00
panic-handler-chain.rs Stabilize const-calling existing const-fns in std 2017-11-26 23:43:44 +01:00
panic-handler-flail-wildly.rs Update rpass tests for panic hooks 2016-03-15 20:51:48 -07:00
panic-handler-set-twice.rs Stabilize const-calling existing const-fns in std 2017-11-26 23:43:44 +01:00
panic-in-dtor-drops-fields.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
panic-recover-propagate.rs std: Clean out old unstable + deprecated APIs 2016-05-30 20:46:32 -07:00
panic-safe.rs std: Relax UnwindSafe impl for Unique 2017-02-21 14:36:24 -08:00
parallel-codegen-closures.rs
parameterized-trait-with-bounds.rs
paren-free.rs
parse-assoc-type-lt.rs
parse-complex-macro-invoc-op.rs
parse-panic.rs
parser-unicode-whitespace.rs libsyntax: accept only whitespace with the PATTERN_WHITE_SPACE property 2016-01-16 00:57:12 +00:00
pat-ranges.rs
pat-tuple-1.rs Stabilize .. in tuple (struct) patterns 2016-11-03 01:38:15 +03:00
pat-tuple-2.rs Stabilize .. in tuple (struct) patterns 2016-11-03 01:38:15 +03:00
pat-tuple-3.rs Stabilize .. in tuple (struct) patterns 2016-11-03 01:38:15 +03:00
pat-tuple-4.rs Stabilize .. in tuple (struct) patterns 2016-11-03 01:38:15 +03:00
pat-tuple-5.rs Stabilize .. in tuple (struct) patterns 2016-11-03 01:38:15 +03:00
pat-tuple-6.rs Stabilize .. in tuple (struct) patterns 2016-11-03 01:38:15 +03:00
pat-tuple-7.rs Support parentheses in patterns under feature gate 2018-03-01 01:47:56 +03:00
path.rs
paths-containing-nul.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
paths-in-macro-invocations.rs Add tests. 2016-11-30 23:17:56 +00:00
pattern-bound-var-in-for-each.rs
pattern-in-closure.rs
print-stdout-eprint-stderr.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
priv-impl-prim-ty.rs
privacy-ns.rs
privacy-reexport.rs Fix the visibility of extern crate declarations and stop warning on pub extern crate 2016-02-24 01:34:14 +00:00
privacy1.rs
private-class-field.rs
private-method.rs
process-envs.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
process-exit.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
process-remove-from-env.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
process-sigpipe.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
process-spawn-nonexistent.rs Add a specific test for spawn() returning ENOENT 2018-02-28 19:09:59 -08:00
process-spawn-with-unicode-params.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
process-status-inherits-stdin.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
project-cache-issue-31849.rs some new tests 2016-05-31 19:59:34 -04:00
project-cache-issue-37154.rs add regression test for #37154 2016-10-21 11:13:36 -04:00
project-defer-unification.rs Revert "Auto merge of #39485 - canndrew:inference-fix-39297, r=nikomatsakis" 2017-03-22 11:13:09 -04:00
ptr-coercion.rs
pub-extern-privacy.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
pub-item-inside-macro.rs
pub-method-inside-macro.rs
pub-use-xcrate.rs
pub_use_mods_xcrate_exe.rs
pure-sum.rs
purity-infer.rs
range-inclusive-pattern-precedence.rs Disallow &a..=b and box a..=b in pattern. 2018-03-15 16:58:03 +08:00
range-type-infer.rs
range.rs adjust range tests 2016-02-27 02:01:41 -05:00
range_inclusive.rs Stabilize inclusive_range_syntax language feature. 2018-03-15 16:58:02 +08:00
range_inclusive_gate.rs Stabilize inclusive_range_syntax language feature. 2018-03-15 16:58:02 +08:00
ranges-precedence.rs
raw-fat-ptr.rs implement raw fat pointer ops 2015-09-06 16:11:38 +03:00
raw-str.rs
rcvr-borrowed-to-region.rs
rcvr-borrowed-to-slice.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
reachable-unnameable-items.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
reachable-unnameable-type-alias.rs Add more tests for unnameable reachable items 2016-02-18 01:04:28 +03:00
readalias.rs
realloc-16687.rs Rename alloc::Void to alloc::Opaque 2018-04-12 22:53:22 +02:00
rec-align-u32.rs Simplify some uses of cfg in test cases 2016-01-13 01:39:01 +00:00
rec-align-u64.rs Make 3 run-pass tests works on android (aarch64 and x86) 2018-01-25 18:55:11 -02:00
rec-auto.rs
rec-extend.rs
rec-tup.rs
rec.rs
record-pat.rs
reexport-should-still-link.rs
reexport-star.rs
reexport-test-harness-main.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
reexported-static-methods-cross-crate.rs
regions-addr-of-interior-of-unique-box.rs
regions-addr-of-ret.rs
regions-assoc-type-region-bound.rs
regions-assoc-type-static-bound.rs
regions-borrow-at.rs
regions-borrow-evec-fixed.rs
regions-borrow-evec-uniq.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
regions-borrow-uniq.rs
regions-bot.rs
regions-bound-lists-feature-gate-2.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
regions-bound-lists-feature-gate.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
regions-close-over-type-parameter-successfully.rs
regions-copy-closure.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
regions-creating-enums2.rs
regions-creating-enums5.rs
regions-debruijn-of-object.rs
regions-dependent-addr-of.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
regions-dependent-autofn.rs
regions-dependent-autoslice.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
regions-dependent-let-ref.rs
regions-early-bound-lifetime-in-assoc-fn.rs
regions-early-bound-trait-param.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
regions-early-bound-used-in-bound-method.rs
regions-early-bound-used-in-bound.rs
regions-early-bound-used-in-type-param.rs
regions-escape-into-other-fn.rs
regions-expl-self.rs
regions-fn-subtyping-2.rs
regions-fn-subtyping.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
regions-free-region-outlives-static-outlives-free-region.rs fix accidental reversal of 'static, and add a test 2015-08-21 11:44:20 -04:00
regions-infer-borrow-scope-addr-of.rs
regions-infer-borrow-scope-view.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
regions-infer-borrow-scope-within-loop-ok.rs
regions-infer-borrow-scope.rs
regions-infer-call-2.rs
regions-infer-call.rs
regions-infer-contravariance-due-to-ret.rs
regions-infer-reborrow-ref-mut-recurse.rs
regions-infer-region-in-fn-but-not-type.rs
regions-infer-static-from-proc.rs
regions-issue-21422.rs
regions-issue-22246.rs Make RFC 1214 warnings into errors, and rip out the "warn or err" 2015-12-18 12:41:02 -05:00
regions-lifetime-nonfree-late-bound.rs
regions-lifetime-static-items-enclosing-scopes.rs
regions-link-fn-args.rs
regions-lub-ref-ref-rc.rs Fix some some duplicate words. 2016-05-05 21:12:37 +02:00
regions-mock-trans.rs Replace remaining uses of deprecated Heap with Global 2018-04-14 16:48:27 +09:00
regions-no-bound-in-argument-cleanup.rs
regions-no-variance-from-fn-generics.rs Make RFC 1214 warnings into errors, and rip out the "warn or err" 2015-12-18 12:41:02 -05:00
regions-nullary-variant.rs
regions-params.rs
regions-reassign-let-bound-pointer.rs
regions-reassign-match-bound-pointer.rs
regions-refcell.rs
regions-relate-bound-regions-on-closures-to-inference-variables.rs rename region_inference module to region_constraints 2017-11-16 05:57:43 -05:00
regions-return-interior-of-option.rs
regions-scope-chain-example.rs
regions-self-impls.rs
regions-self-in-enums.rs
regions-simple.rs
regions-static-bound.rs
regions-static-closure.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
regions-trait-object-1.rs
regions-variance-contravariant-use-contravariant.rs
regions-variance-covariant-use-covariant.rs
repeat-expr-in-static.rs
repeated-vector-syntax.rs
resolve-issue-2428.rs
resolve-pseudo-shadowing.rs resolve: don't speculatively create freevars when resolving 2015-11-03 21:08:42 +02:00
resource-assign-is-not-copy.rs
resource-destruct.rs
resource-in-struct.rs
result-opt-conversions.rs Add transpose conversions for Option and Result 2018-01-10 17:42:47 -08:00
ret-bang.rs
ret-none.rs
return-from-closure.rs
return-nil.rs
rfc-1014-2.rs std: Migrate to the new libc 2015-11-09 22:55:50 -08:00
rfc-1014.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
rfc1623.rs Stabilize static in const 2017-02-08 12:33:35 +01:00
rfc1857-drop-order.rs fix more typos found by codespell. 2018-02-17 17:38:49 +01:00
rmeta.rs Rebasing and review changes 2016-11-23 12:50:39 +13:00
running-with-no-runtime.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
rustc-rust-log.rs rustc: Check if def_path_hash_to_def_id is populated before accessing it. 2017-06-18 17:01:25 +01:00
rvalue-static-promotion.rs rustc: treat impl associated consts like const items for constness. 2017-08-28 09:27:58 +03:00
saturating-float-casts.rs Fix missed i128 feature gates 2018-03-26 08:37:56 -05:00
segfault-no-out-of-stack.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
self-impl.rs
self-in-mut-slot-default-method.rs
self-in-mut-slot-immediate-value.rs
self-re-assign.rs
self-shadowing-import.rs
self-type-param.rs
semi-after-macro-ty.rs
semistatement-in-lambda.rs Lambda expressions honor no struct literal restriction 2017-07-23 16:20:14 +03:00
send-is-not-static-par-for.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
send-resource.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
send-type-inference.rs
send_str_hashmap.rs std: Clean out deprecated APIs 2016-03-12 12:31:13 -08:00
send_str_treemap.rs std: Clean out deprecated APIs 2016-03-12 12:31:13 -08:00
sendable-class.rs
sendfn-is-a-block.rs
sendfn-spawn-with-fn-arg.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
sepcomp-cci.rs Change tests per RFC 246 (const vs static) 2015-10-03 00:01:49 +09:00
sepcomp-extern.rs
sepcomp-fns-backwards.rs
sepcomp-fns.rs
sepcomp-lib-lto.rs Add regression test for debuginfo + LTO 2017-01-18 11:24:43 -05:00
sepcomp-lib.rs
sepcomp-statics.rs
sepcomp-unwind.rs Utilize Result::unwrap_err in more places. 2016-05-09 08:40:57 -04:00
seq-compare.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
shadow.rs
shadowed-use-visibility.rs Fix a bug in which the visibility of a use declaration defining a name in one namespace (e.g. the value namespace) is overridden by a later use declaration defining the same name in the other namespace (e.g. the type namespace). 2015-12-10 02:55:05 +00:00
shebang.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
shift-near-oflo.rs revert test to check runtime evaluation instead of constant evaluation 2015-11-27 16:46:11 +01:00
shift-various-types.rs
shift.rs undo changes to run-pass tests that aren't errors anymore 2016-03-11 09:44:11 +01:00
show-boxed-slice.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
signal-alternate-stack-cleanup.rs Make 3 run-pass tests works on android (aarch64 and x86) 2018-01-25 18:55:11 -02:00
signal-exit-status.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
signed-shift-const-eval.rs
sigpipe-should-be-ignored.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
simd-generics.rs Fix existing tests for new #[repr(simd)]. 2015-08-17 14:41:40 -07:00
simd-intrinsic-generic-arithmetic.rs ci: Disable optimized tests for asm.js 2018-03-16 12:47:49 -07:00
simd-intrinsic-generic-cast.rs test: Update Emscripten failures/passing 2017-10-17 18:46:38 -07:00
simd-intrinsic-generic-comparison.rs ci: Disable optimized tests for asm.js 2018-03-16 12:47:49 -07:00
simd-intrinsic-generic-elements.rs ci: Disable optimized tests for asm.js 2018-03-16 12:47:49 -07:00
simd-intrinsic-generic-reduction.rs ignore emscripten 2018-03-16 09:39:41 +01:00
simd-intrinsic-generic-select.rs ignore emscripten in run-pass test 2018-03-20 08:25:25 +01:00
simd-size-align.rs Fix existing tests for new #[repr(simd)]. 2015-08-17 14:41:40 -07:00
simd-target-feature-mixup.rs Separately gate each target_feature feature 2018-04-16 13:58:42 -07:00
simd-type.rs Fix existing tests for new #[repr(simd)]. 2015-08-17 14:41:40 -07:00
simd-upgraded.rs Support removed LLVM intrinsics by invoking its AutoUpgrade mechanism. 2016-08-03 22:37:57 +03:00
simple-generic-match.rs
simple-generic-tag.rs
simple-infer.rs
simple-match-generic-tag.rs
simple_global_asm.rs Comply with windows symbol name conventions 2017-04-13 23:41:03 -05:00
size-and-align.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
sized-borrowed-pointer.rs
sized-owned-pointer.rs
sleep.rs [emscripten] Ignore tests 2016-08-10 16:38:31 +02:00
slice-2.rs
slice-of-zero-size-elements.rs
slice-panic-1.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
slice-panic-2.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
slice.rs
slice_binary_search.rs extend lifetime on binary_search_by_key of SliceExt trait 2016-08-09 00:32:35 +05:30
slowparse-bstring.rs
slowparse-string.rs
small-enum-range-edge.rs
small-enums-with-fields.rs
snake-case-no-lowercase-equivalent.rs
spawn-fn.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
spawn-types.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
spawn.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
spawn2.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
spawning-with-debug.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
sse2.rs Enable target_feature on any LLVM 6+ 2018-03-27 12:27:45 -07:00
stable-addr-of.rs
stack-probes-lto.rs Ignore stack-probes tests on powerpc/s390x too 2018-03-29 10:25:32 -07:00
stack-probes.rs Ignore stack-probes tests on powerpc/s390x too 2018-03-29 10:25:32 -07:00
static-fn-inline-xc.rs
static-fn-trait-xc.rs
static-function-pointer-xc.rs
static-function-pointer.rs
static-impl.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
static-method-in-trait-with-tps-intracrate.rs
static-method-xcrate.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
static-methods-in-traits.rs
static-methods-in-traits2.rs
static-mut-foreign.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
static-mut-xc.rs
static-recursive.rs Stabilize static_recursion 2017-02-21 23:41:04 -08:00
std-sync-right-kind-impls.rs std: Clean out deprecated APIs 2016-07-12 12:51:13 -07:00
stdio-is-blocking.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
stmt_expr_attr_macro_parse.rs Extended simple macro test 2015-11-26 21:47:44 +01:00
str-concat.rs
str-multiline.rs
string-box-error.rs Add an impl for Box<Error> from &str. 2016-01-13 10:38:44 +11:00
string-escapes.rs
string-self-append.rs
struct-aliases-xcrate.rs
struct-aliases.rs use the correct substs when checking struct patterns 2015-08-17 18:22:00 +03:00
struct-destructuring-cross-crate.rs
struct-field-shorthand.rs Stabilize field init shorthand 2017-02-15 07:11:13 +01:00
struct-like-variant-construct.rs
struct-like-variant-match.rs
struct-lit-functional-no-fields.rs
struct-literal-dtor.rs
struct-new-as-field-name.rs
struct-order-of-eval-1.rs
struct-order-of-eval-2.rs
struct-order-of-eval-3.rs Stabilize const-calling existing const-fns in std 2017-11-26 23:43:44 +01:00
struct-order-of-eval-4.rs Stabilize const-calling existing const-fns in std 2017-11-26 23:43:44 +01:00
struct-partial-move-1.rs
struct-partial-move-2.rs
struct-path-associated-type.rs Stabilize Self and associated types in struct expressions and patterns 2017-01-25 01:41:11 +03:00
struct-path-self.rs Stabilize Self and associated types in struct expressions and patterns 2017-01-25 01:41:11 +03:00
struct-pattern-matching.rs
struct-return.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
struct-variant-field-visibility.rs
struct_variant_xc.rs
struct_variant_xc_match.rs
structured-compare.rs
super-fast-paren-parsing.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
super.rs
supertrait-default-generics.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
supported-cast.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
svh-add-nothing.rs Remove some svh-tests from run-pass. 2017-12-08 10:02:26 +01:00
swap-1.rs
swap-2.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
swap-overlapping.rs
sync-send-atomics.rs
sync-send-in-std.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
sync-send-iterators-in-libcollections.rs Move alloc::Bound to {core,std}::ops 2018-03-29 13:12:49 +02:00
sync-send-iterators-in-libcore.rs Delete deprecated & unstable range-specific step_by 2017-07-01 19:18:02 -07:00
syntax-extension-cfg.rs
syntax-extension-source-utils.rs Fix tests 2017-12-24 03:02:28 +01:00
syntax-trait-polarity.rs
tag-align-dyn-u64.rs
tag-align-dyn-variants.rs
tag-align-shape.rs
tag-align-u64.rs
tag-disr-val-shape.rs
tag-exports.rs
tag-in-block.rs
tag-variant-disr-type-mismatch.rs
tag-variant-disr-val.rs
tag.rs
tail-call-arg-leak.rs
tail-cps.rs
tail-direct.rs
task-comm-0.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
task-comm-1.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
task-comm-3.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
task-comm-4.rs
task-comm-5.rs
task-comm-6.rs
task-comm-7.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
task-comm-9.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
task-comm-10.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
task-comm-11.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
task-comm-12.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
task-comm-13.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
task-comm-14.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
task-comm-15.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
task-comm-16.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
task-comm-17.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
task-comm-chan-nil.rs
task-life-0.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
task-spawn-move-and-copy.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
task-stderr.rs Change the sigs of set_print/set_panic to allow restoring the default objects 2016-09-30 14:02:53 -07:00
tcp-stress.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
terminate-in-initializer.rs Utilize Result::unwrap_err in more places. 2016-05-09 08:40:57 -04:00
test-allow-dead-extern-static-no-warning.rs Don't warn about dead foreign items if the 'allow(dead_code)' attribute is present 2017-01-03 14:54:15 +13:00
test-allow-fail-attr.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
test-allow-non-camel-case-variant.rs Use check_variant for non_camel_case_types lint 2017-02-14 19:46:48 +09:00
test-fn-signature-verification-for-explicit-return-type.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
test-main-not-dead-attr.rs Mark main-like functions allow(dead_code) in tests 2015-08-24 20:28:24 -04:00
test-main-not-dead.rs Mark main-like functions allow(dead_code) in tests 2015-08-24 20:28:24 -04:00
test-runner-hides-buried-main.rs Move main removal to its own pass in --test mode 2015-08-24 20:28:24 -04:00
test-runner-hides-main.rs Fix some pretty printing tests 2016-10-18 23:23:40 +03:00
test-runner-hides-start.rs Remove #[start] as well as #[main] in --test 2015-08-24 20:28:24 -04:00
test-should-fail-good-message.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
test-vs-cfg-test.rs Do not inject test harness for --cfg test 2016-05-24 00:44:44 +09:00
thin-lto-global-allocator.rs Replace remaining uses of deprecated std::heap with std::alloc 2018-04-14 16:47:38 +09:00
thread-local-extern-static.rs Check #[thread_local] statics correctly in the compiler. 2017-08-12 12:58:07 +03:00
thread-local-syntax.rs support pub(restricted) in thread_local! 2017-07-11 20:27:54 +00:00
threads.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
tls-dtors-are-run-in-a-static-binary.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
tls-init-on-init.rs Fix a few run-pass tests 2018-02-28 20:52:38 +01:00
tls-try-with.rs Fix a few run-pass tests 2018-02-28 20:52:38 +01:00
trailing-comma.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
trait-bounds-basic.rs
trait-bounds-impl-comparison-duplicates.rs
trait-bounds-in-arc.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
trait-bounds-on-structs-and-enums.rs
trait-bounds-recursion.rs
trait-bounds.rs
trait-cache-issue-18209.rs
trait-coercion-generic.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
trait-coercion.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
trait-composition-trivial.rs
trait-copy-guessing.rs fix remaining bugs 2015-11-15 19:22:32 +02:00
trait-default-method-bound-subst.rs
trait-default-method-bound-subst2.rs
trait-default-method-bound-subst3.rs
trait-default-method-bound-subst4.rs
trait-default-method-bound.rs
trait-default-method-xc-2.rs
trait-default-method-xc.rs
trait-false-ambiguity-where-clause-builtin-bound.rs
trait-generic.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
trait-impl-2.rs
trait-impl.rs
trait-inheritance-auto-xc-2.rs
trait-inheritance-auto-xc.rs
trait-inheritance-auto.rs
trait-inheritance-call-bound-inherited.rs
trait-inheritance-call-bound-inherited2.rs
trait-inheritance-cast-without-call-to-supertrait.rs
trait-inheritance-cast.rs
trait-inheritance-cross-trait-call-xc.rs Shorten another test path for MSVC 2018-01-26 06:48:38 -08:00
trait-inheritance-cross-trait-call.rs
trait-inheritance-diamond.rs
trait-inheritance-multiple-inheritors.rs
trait-inheritance-multiple-params.rs
trait-inheritance-num.rs
trait-inheritance-num0.rs Make RFC 1214 warnings into errors, and rip out the "warn or err" 2015-12-18 12:41:02 -05:00
trait-inheritance-num1.rs Make RFC 1214 warnings into errors, and rip out the "warn or err" 2015-12-18 12:41:02 -05:00
trait-inheritance-num2.rs
trait-inheritance-num3.rs Make RFC 1214 warnings into errors, and rip out the "warn or err" 2015-12-18 12:41:02 -05:00
trait-inheritance-num5.rs Make RFC 1214 warnings into errors, and rip out the "warn or err" 2015-12-18 12:41:02 -05:00
trait-inheritance-overloading-simple.rs
trait-inheritance-overloading-xc-exe.rs
trait-inheritance-overloading.rs
trait-inheritance-self-in-supertype.rs Make RFC 1214 warnings into errors, and rip out the "warn or err" 2015-12-18 12:41:02 -05:00
trait-inheritance-self.rs Make RFC 1214 warnings into errors, and rip out the "warn or err" 2015-12-18 12:41:02 -05:00
trait-inheritance-simple.rs
trait-inheritance-static.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
trait-inheritance-static2.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
trait-inheritance-subst.rs Make RFC 1214 warnings into errors, and rip out the "warn or err" 2015-12-18 12:41:02 -05:00
trait-inheritance-subst2.rs Make RFC 1214 warnings into errors, and rip out the "warn or err" 2015-12-18 12:41:02 -05:00
trait-inheritance-visibility.rs
trait-inheritance2.rs
trait-item-inside-macro.rs Add support for macro expansion inside trait items 2016-06-13 21:46:43 +01:00
trait-object-exclusion.rs Don't translate vtable methods with Self: Sized bounds. 2016-06-23 03:30:01 +03:00
trait-object-generics.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
trait-object-lifetime-first.rs Parse trait object types starting with a lifetime bound 2017-04-25 23:58:05 +03:00
trait-object-with-lifetime-bound.rs
trait-region-pointer-simple.rs
trait-safety-ok-cc.rs
trait-safety-ok.rs
trait-static-method-overwriting.rs
trait-to-str.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
trait-where-clause-vs-impl.rs
trait-with-bounds-default.rs
traits-assoc-type-in-supertrait.rs
traits-conditional-dispatch.rs
traits-conditional-model-fn.rs
traits-default-method-macro.rs
traits-default-method-mut.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
traits-default-method-self.rs
traits-default-method-trivial.rs
traits-elaborate-type-region.rs elaborate T: 'a dependencies 2016-11-01 14:04:14 -04:00
traits-impl-object-overlap-issue-23853.rs
traits-issue-22019.rs
traits-issue-22110.rs
traits-issue-22655.rs
traits-issue-23003.rs
traits-issue-26339.rs
traits-multidispatch-infer-convert-target.rs
traits-negative-impls.rs
traits-repeated-supertrait.rs
trans-object-shim.rs Fix and cleanup callee shims 2016-12-20 20:03:34 -07:00
trans-tag-static-padding.rs
transmute-non-immediate-to-immediate.rs
transmute-specialization.rs rustc: always normalize projections in ty::layout regardless where they appear. 2016-08-12 06:43:34 +03:00
trivial-message.rs
trivial_casts.rs
try-macro.rs add regression test for try! 2016-03-26 12:10:16 -05:00
try-operator-custom.rs Lower ? to Try instead of Carrier 2017-05-25 00:47:30 -07:00
try-operator-hygiene.rs Stabilise ? 2016-10-12 08:40:22 +13:00
try-operator.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
try-wait.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
tup.rs
tuple-index-fat-types.rs
tuple-index.rs
tuple-struct-construct.rs
tuple-struct-constructor-pointer.rs
tuple-struct-destructuring.rs
tuple-struct-matching.rs
tuple-struct-trivial.rs
two-macro-use.rs
tydesc-name.rs
type-ascription.rs tests: replace "lvalue" terminology with "place". 2018-01-29 11:48:12 +02:00
type-id-higher-rank-2.rs Rewrite TypeId computation to not miss anything and work cross-crate. 2016-08-06 00:50:13 +03:00
type-id-higher-rank.rs Erase/anonymize regions while computing TypeId hash. 2017-08-09 14:09:48 +02:00
type-in-nested-module.rs
type-infer-generalize-ty-var.rs generalize type variables too 2017-04-11 20:32:47 -04:00
type-macros-hlist.rs Stabilize type-macros 2016-08-26 17:27:20 +02:00
type-macros-simple.rs Type check defaults. 2018-02-28 12:33:14 -03:00
type-namespace.rs
type-param-constraints.rs
type-param.rs
type-params-in-for-each.rs
type-ptr.rs
type-sizes.rs Properly look for uninhabitedness of variants in niche-filling check 2018-04-09 00:58:52 +02:00
type-use-i1-versus-i8.rs
typeck-fn-to-unsafe-fn-ptr.rs rustc_typeck: Allow reification from fn item to unsafe ptr 2016-10-24 17:05:58 -07:00
typeck-macro-interaction-issue-8852.rs
typeck_type_placeholder_1.rs
typeclasses-eq-example-static.rs
typeclasses-eq-example.rs
typeid-intrinsic.rs rustc: allow less and handle fn pointers in the type hashing algorithm. 2016-09-20 20:30:55 +03:00
typestate-cfg-nesting.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
typestate-multi-decl.rs
u8-incr-decr.rs
u8-incr.rs
u32-decr.rs
u128-as-f32.rs Fix missed i128 feature gates 2018-03-26 08:37:56 -05:00
u128.rs Stabilize i128_type 2018-03-26 08:36:50 -05:00
ufcs-explicit-self.rs
ufcs-polymorphic-paths.rs std: Clean out deprecated APIs 2016-03-12 12:31:13 -08:00
ufcs-trait-object.rs
ufcs-type-params.rs
uint.rs
unary-minus-suffix-inference.rs [breaking-change] remove negate_unsigned feature gate 2016-01-11 12:31:46 +01:00
unboxed-closures-all-traits.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-blanket-fn-mut.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-blanket-fn.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-boxed.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-by-ref.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-call-fn-autoderef.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-call-sugar-autoderef.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-call-sugar-object-autoderef.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
unboxed-closures-call-sugar-object.rs Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
unboxed-closures-counter-not-moved.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
unboxed-closures-cross-crate.rs
unboxed-closures-direct-sugary-call.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-drop.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-extern-fn-hr.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
unboxed-closures-extern-fn.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-fn-as-fnmut-and-fnonce.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-fnmut-as-fnonce.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-generic.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-infer-arg-types-from-expected-bound.rs Rename some run-pass tests so they don't crash when executed from eCryptfs. 2017-10-25 13:15:04 +02:00
unboxed-closures-infer-arg-types-from-expected-object-type.rs Rename some run-pass tests so they don't crash when executed from eCryptfs. 2017-10-25 13:15:04 +02:00
unboxed-closures-infer-arg-types-w-bound-regs-from-expected-bound.rs Rename some run-pass tests so they don't crash when executed from eCryptfs. 2017-10-25 13:15:04 +02:00
unboxed-closures-infer-explicit-call-early.rs remove the hacky selection impl in method::probe 2017-08-29 14:34:43 +03:00
unboxed-closures-infer-fnmut-calling-fnmut.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-infer-fnmut-move.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-infer-fnmut.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-infer-fnonce-move.rs
unboxed-closures-infer-fnonce.rs
unboxed-closures-infer-kind.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-infer-recursive-fn.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
unboxed-closures-infer-upvar.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-manual-impl.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
unboxed-closures-monomorphization.rs std: Stabilize APIs for the 1.6 release 2015-12-05 15:09:44 -08:00
unboxed-closures-move-from-projection-issue-30046.rs look for the note on the guarantor, not the root cmt 2017-11-08 05:29:03 -05:00
unboxed-closures-move-mutable.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-move-some-upvars-in-by-ref-closure.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
unboxed-closures-prelude.rs Reexport -> re-export in prose and documentation comments 2018-01-15 13:36:53 -05:00
unboxed-closures-simple.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-single-word-env.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-static-call-fn-once.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-sugar-object.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-unique-type-id.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
unboxed-closures-zero-args.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
underscore-lifetimes.rs Stabilize underscore lifetimes 2018-03-29 00:27:50 +02:00
underscore-method-after-integer.rs Disallow ._ in float literal. 2017-05-12 22:00:06 +09:00
unify-return-ty.rs
uninit-empty-types.rs
uninstantiable-struct.rs remove the is_instantiable check 2015-08-31 23:54:15 +03:00
uniq-self-in-mut-slot.rs Prohibit patterns in trait methods without bodies 2016-10-26 20:55:16 +03:00
unique-assign-copy.rs
unique-assign-drop.rs
unique-assign-generic.rs
unique-assign.rs
unique-autoderef-field.rs
unique-autoderef-index.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
unique-cmp.rs
unique-containing-tag.rs
unique-create.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
unique-decl-init-copy.rs
unique-decl-init.rs
unique-decl-move.rs
unique-decl.rs
unique-deref.rs
unique-destructure.rs
unique-drop-complex.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
unique-ffi-symbols.rs trans: Remove the foreign module. 2016-03-17 21:51:52 +02:00
unique-fn-arg-move.rs
unique-fn-arg-mut.rs
unique-fn-arg.rs
unique-fn-ret.rs
unique-generic-assign.rs
unique-in-tag.rs
unique-in-vec-copy.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
unique-in-vec.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
unique-init.rs
unique-kinds.rs
unique-log.rs
unique-match-discrim.rs
unique-move-drop.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
unique-move-temp.rs
unique-move.rs
unique-mutable.rs
unique-object-move.rs
unique-pat-2.rs
unique-pat-3.rs
unique-pat.rs
unique-rec.rs
unique-send-2.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
unique-send.rs
unique-swap.rs
unit-like-struct-drop-run.rs Utilize Result::unwrap_err in more places. 2016-05-09 08:40:57 -04:00
unit-like-struct.rs
unit.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
unnamed_argument_mode.rs
unreachable-code-1.rs Fix compiletest so it respects warnings for run-pass. 2016-08-22 16:51:37 -07:00
unreachable-code.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
unsafe-coercion.rs
unsafe-fn-called-from-unsafe-blk.rs
unsafe-fn-called-from-unsafe-fn.rs
unsafe-pointer-assignability.rs
unsized-tuple-impls.rs Add a test for unsized tuple impls. 2017-07-04 21:26:46 +09:00
unsized.rs
unsized2.rs adapt existing tests 2016-10-24 20:55:56 +02:00
unsized3.rs
unused-move-capture.rs
unused-move.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
unwind-resource.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
unwind-unique.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
use-crate-name-alias.rs
use-import-export.rs
use-keyword-2.rs Add tests 2016-04-24 20:59:44 +03:00
use-mod.rs
use-nested-groups.rs Stabilize use_nested_groups 2018-02-05 10:23:40 +01:00
use-trait-before-def.rs
use-uninit-match.rs
use-uninit-match2.rs
use.rs
use_inline_dtor.rs
utf8-bom.rs
utf8.rs
utf8_chars.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
utf8_idents.rs
variadic-ffi.rs std: Add a new wasm32-unknown-unknown target 2017-11-19 21:07:41 -08:00
variance-intersection-of-ref-and-opt-ref.rs
variance-iterators-in-libcore.rs Remove data structure specialization for .zip() iterator 2016-09-15 13:00:15 +02:00
variance-vec-covariant.rs
variant-attributes.rs
variant-structs-trivial.rs
vec-concat.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
vec-dst.rs
vec-fixed-length.rs
vec-growth.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
vec-late-init.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
vec-macro-no-std.rs test: Update Emscripten failures/passing 2017-10-17 18:46:38 -07:00
vec-macro-repeat.rs
vec-macro-rvalue-scope.rs
vec-macro-with-brackets.rs
vec-macro-with-trailing-comma.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
vec-matching-autoslice.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
vec-matching-fixed.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
vec-matching-fold.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
vec-matching-legal-tail-element-borrow.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
vec-matching.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
vec-push.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
vec-repeat-with-cast.rs
vec-slice-drop.rs
vec-slice.rs
vec-tail-matching.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
vec-to_str.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
vec.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
vec_cycle.rs Remove #[derive(Show)] 2015-10-18 19:12:09 +03:00
vec_cycle_wrapped.rs Remove #[derive(Show)] 2015-10-18 19:12:09 +03:00
vector-no-ann-2.rs
volatile-fat-ptr.rs Fix volatile stores of fat pointers 2016-03-19 02:24:37 +00:00
wait-forked-but-failed-child.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
warn-ctypes-inhibit.rs
weak-lang-item.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
weird-exit-code.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
weird-exprs.rs initialize the destination in unit statements 2017-12-03 02:21:13 +02:00
wf-bound-region-in-object-type.rs
where-clause-bounds-inconsistency.rs Remove more anonymous trait method parameters 2017-07-08 01:56:27 +03:00
where-clause-early-bound-lifetimes.rs
where-clause-method-substituion.rs
where-clause-region-outlives.rs
where-clauses-cross-crate.rs
where-clauses-lifetimes.rs
where-clauses-method.rs
where-clauses-unboxed-closures.rs Don't gate methods Fn(Mut,Once)::call(mut,once) with feature unboxed_closures 2016-07-31 17:48:20 +03:00
where-clauses.rs
where-for-self.rs
while-cont.rs
while-flow-graph.rs
while-label.rs
while-let.rs Remove BinaryHeap::{push_pop,replace} 2017-04-20 21:16:31 -07:00
while-loop-constraints-2.rs Ensure that attributes are spelled properly. 2016-08-13 02:41:43 -07:00
while-prelude-drop.rs Merge crate collections into alloc 2017-06-13 23:37:34 -07:00
while-with-break.rs Changed most vec! invocations to use square braces 2016-10-31 22:51:40 +00:00
while.rs
wrapping-int-api.rs implement RFC 1229 2015-10-13 17:01:03 +02:00
write-fmt-errors.rs Make sure formatter errors are emitted by the default Write::write_fmt 2016-02-26 02:59:25 +01:00
writealias.rs
wrong-hashset-issue-42918.rs Add test for wrong code generation for HashSet creation on arm cpu 2017-08-26 08:33:35 +03:00
x86stdcall.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
x86stdcall2.rs Correct type definition of HANDLE. 2015-09-17 12:03:27 +03:00
xcrate-address-insignificant.rs
xcrate-associated-type-defaults.rs Test fixes, added README for tests 2016-03-14 15:05:14 -07:00
xcrate-static-addresses.rs
xcrate-trait-lifetime-param.rs
xcrate-unit-struct.rs
xcrate_generic_fn_nested_return.rs Just pass in NodeId to FunctionContext::new instead of looking it up. 2016-07-05 03:48:12 -04:00
yield.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
yield1.rs Ignore tests that use threads on emscripten 2016-02-11 12:34:41 +01:00
yield2.rs
zero-size-type-destructors.rs Remove drop flags from structs and enums implementing Drop. 2016-08-24 13:23:37 +03:00
zero-sized-binary-heap-push.rs Add tests for collections to work with ZSTs 2016-01-20 10:52:00 -05:00
zero-sized-btreemap-insert.rs Add tests for collections to work with ZSTs 2016-01-20 10:52:00 -05:00
zero-sized-linkedlist-push.rs Add tests for collections to work with ZSTs 2016-01-20 10:52:00 -05:00
zero-sized-tuple-struct.rs Translate constructor arguments for zero-sized tuple structs 2015-08-31 23:57:41 +12:00
zero-sized-vec-deque-push.rs Move zst test from libcollections to src/test 2016-01-17 09:21:25 -05:00
zero-sized-vec-push.rs Add tests for collections to work with ZSTs 2016-01-20 10:52:00 -05:00
zero_sized_subslice_match.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00