rust/src/test/ui
bors 3fc70e8d46 Auto merge of #54383 - mikeyhew:custom-receivers-object-safety, r=nikomatsakis
Take 2: Implement object-safety and dynamic dispatch for arbitrary_self_types

This replaces #50173. Over the months that that PR was open, we made a lot of changes to the way this was going to be implemented, and the long, meandering comment thread and commit history would have been confusing to people reading it in the future. So I decided to package everything up with new, straighforward commits and open a new PR.

Here are the main points. Please read the commit messages for details.

- To simplify codegen, we only support receivers that have the ABI of a pointer. That means they are builtin pointer types, or newtypes thereof.
- We introduce a new trait: `DispatchFromDyn<T>`, similar to `CoerceUnsized<T>`. `DispatchFromDyn` has extra requirements that `CoerceUnsized` does not: when you implement `DispatchFromDyn` for a struct, there cannot be any extra fields besides the field being coerced and `PhantomData` fields. This ensures that the struct's ABI is the same as a pointer.
- For a method's receiver (e.g. `self: Rc<Self>`) to be object-safe, it needs to have the following property:
    - let `DynReceiver` be the receiver when `Self = dyn Trait`
    - let `ConcreteReceiver` be the receiver when `Self = T`, where `T` is some unknown `Sized` type that implements `Trait`, and is the erased type of the trait object.
    - `ConcreteReceiver` must implement `DispatchFromDyn<DynReceiver>`

In the case of `Rc<Self>`, this requires `Rc<T>: DispatchFromDyn<Rc<dyn Trait>>`

These rules are explained more thoroughly in the doc comment on `receiver_is_dispatchable` in object_safety.rs.

r? @nikomatsakis and @eddyb

cc @arielb1 @cramertj @withoutboats

Special thanks to @nikomatsakis for getting me un-stuck when implementing the object-safety checks, and @eddyb for helping with the codegen parts.

EDIT 2018-11-01: updated because CoerceSized has been replaced with DispatchFromDyn
2018-11-03 02:37:29 +00:00
..
alloc-error Point at def span on incorrect panic or alloc error handler 2018-08-30 16:00:09 -07:00
allocator Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
asm Point to variable in asm! macro when failing borrowck 2018-10-09 15:53:37 -07:00
associated-const Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
associated-item Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
associated-type Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
associated-types review comments 2018-10-22 14:56:02 -07:00
attrs-with-no-formal-in-generics Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
auxiliary Move conditional configuration related UI tests into their own directory 2018-10-05 00:13:23 -07:00
await-keyword Make "await" a pseudo-edition keyword 2018-09-24 13:07:19 -07:00
bad updates tests to use new error code 2018-08-24 08:51:25 -04:00
bind-by-move On nightly with NLL, suggest #![feature(bind_by_move_pattern_guards)] when it might fix the code. 2018-09-17 13:46:50 +02:00
binop Don't emit cannot move errors twice in migrate mode 2018-10-29 20:22:01 +00:00
blind fix other tests failing due to change in case or new suggestion for extern crate 2018-10-17 01:21:40 +02:00
block-result fix typos in various places 2018-10-23 15:56:25 +02:00
borrowck Rollup merge of #55494 - pnkfelix:issue-55492-borrowck-migrate-must-look-at-parents-of-closures, r=davidtwco 2018-10-30 18:55:37 +08:00
builtin-superkinds Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
cast Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
chalkify Add tests for program_clauses_for_env 2018-10-17 14:09:39 +02:00
check_match migrate codebase to ..= inclusive range patterns 2018-06-26 07:53:30 -07:00
closure-expected-type Update output for borrowck=migrate compare mode. 2018-10-17 00:57:32 +02:00
closure_context Add by-value captured variable note on second use. 2018-10-18 18:21:14 +02:00
closures Update output for borrowck=migrate compare mode. 2018-10-17 00:57:32 +02:00
codemap_tests Clearer later use messages for calls 2018-10-03 20:32:38 +01:00
coercion Clearer later use messages for calls 2018-10-03 20:32:38 +01:00
coherence UI test updates 2018-09-29 22:05:07 -07:00
compare-method Remove empty files 2018-05-16 10:19:45 -07:00
conditional-compilation Auto merge of #54929 - csmoe:cfg_lint, r=petrochenkov 2018-10-26 21:46:13 +00:00
confuse-field-and-method Implement existential types 2018-07-18 10:53:08 +02:00
consts Fix double_check tests on big-endian targets 2018-11-01 01:03:20 +00:00
cross Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
custom_test_frameworks Introduce Custom Test Frameworks 2018-09-04 22:33:00 -07:00
cycle-trait rustc: keep a Span for each predicate in ty::GenericPredicates. 2018-09-28 17:19:35 +03:00
dep-graph stabalize infer outlives requirements (RFC 2093). 2018-09-11 11:40:04 -04:00
deprecation Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
derived-errors Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
derives Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
did_you_mean Auto merge of #54490 - wesleywiser:rewrite_it_in_mir, r=oli-obk 2018-10-25 20:40:31 +00:00
directory_ownership Stabilization change for mod.rs 2018-09-08 19:41:46 -07:00
disallowed-deconstructing Bless tests 2018-08-15 15:14:21 -07:00
discrim Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
dollar-crate Fixed 53359: E0432 unresolved import on the same line is now emiting one diagnostic 2018-09-08 15:11:04 +00:00
dropck Use new region infer errors for explaining borrows 2018-10-21 12:35:00 +01:00
dst Don't emit cannot move errors twice in migrate mode 2018-10-29 20:22:01 +00:00
duplicate fix other tests failing due to change in case or new suggestion for extern crate 2018-10-17 01:21:40 +02:00
e0119 UI test updates 2018-09-29 22:05:07 -07:00
editions Point at macro definition when no rules expect token 2018-10-23 21:44:46 -07:00
empty Point to macro def span instead of whole body 2018-10-24 11:34:23 -07:00
enum cleanup: Add main functions to some UI tests 2018-08-31 18:56:15 +03:00
error-codes Put backticks around field names, types and paths in error messages 2018-11-01 18:16:59 -04:00
exclusive-range Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
existential_types Update output for borrowck=migrate compare mode. 2018-10-17 00:57:32 +02:00
explicit Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
extenv Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
extern resolve: More precise spans for privacy errors 2018-10-28 02:56:12 +03:00
feature-gate rustc: Allow #[no_mangle] anywhere in a crate 2018-10-06 13:57:30 -07:00
feature-gates feature-gate lint reasons 2018-10-27 12:31:20 -07:00
fmt Use correct spans for format string errors 2018-07-19 23:18:07 -07:00
fn update recently moved tests 2018-08-15 13:17:04 -07:00
for Reword rustc_on_unimplemented errors for Iterator 2018-10-09 18:53:53 -07:00
fully-qualified-type Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
functional-struct-update Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
generator Use new region infer errors for explaining borrows 2018-10-21 12:35:00 +01:00
generic Auto merge of #53584 - mcr431:Fix-#53525, r=varkor 2018-08-25 13:00:20 +00:00
hello_world Rename must-compile-successfully into compile-pass 2018-04-13 23:28:03 +02:00
hr-subtype Update output for borrowck=migrate compare mode. 2018-10-17 00:57:32 +02:00
hrtb Clearer later use messages for calls 2018-10-03 20:32:38 +01:00
hygiene resolve: More precise spans for privacy errors 2018-10-28 02:56:12 +03:00
if remove padding from multiline format string label 2018-10-03 14:29:39 -04:00
impl-header-lifetime-elision Move an underscore-lifetime error test to an IHLE success test 2018-10-19 22:26:01 -07:00
impl-trait Rollup merge of #55102 - petrochenkov:trextra, r=nikomatsakis 2018-10-18 12:55:02 +08:00
imports resolve: More precise spans for privacy errors 2018-10-28 02:56:12 +03:00
in-band-lifetimes Update output for borrowck=migrate compare mode. 2018-10-17 00:57:32 +02:00
include-macros add regression test for #48835 2018-07-08 16:45:01 -04:00
inference Updated stderr test files. 2018-09-27 04:20:25 +01:00
infinite Rebase fallout 2018-10-25 17:20:39 +02:00
interior-mutability Add message to rustc_on_unimplemented attributes in core 2018-06-19 15:19:13 -07:00
internal Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
invalid Suggest valid crate type if invalid 2018-09-13 21:26:45 +02:00
invalid-module-declaration Moved tests back to compile-test if they don't work on ui. 2018-08-14 11:12:11 +02:00
issues Put backticks around field names, types and paths in error messages 2018-11-01 18:16:59 -04:00
iterators Reword Range*/[Range*]: Iterator E0277 messages 2018-10-11 13:44:07 -07:00
keyword introduce SelfCtor 2018-09-13 12:27:29 +08:00
kindck Update output for borrowck=migrate compare mode. 2018-10-17 00:57:32 +02:00
label Fix typos found by codespell. 2018-08-19 17:41:28 +02:00
lifetimes [review comments] modify test and clean up code 2018-10-22 14:56:03 -07:00
lint don't lint unused_parens on if (break _) 2018-10-29 12:41:56 +01:00
liveness updates to expected output for other ui tests. 2018-10-16 17:11:36 +02:00
loops Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
lub-glb kill old-style-lub warnings 2018-10-31 12:11:02 -04:00
macro_backtrace Use full name to identify a macro in a FileName. 2018-09-19 01:12:13 +01:00
macros resolve: More precise spans for privacy errors 2018-10-28 02:56:12 +03:00
malformed Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
manual Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
marker_trait_attr Improve error checking and reporting 2018-09-19 22:31:30 -07:00
match Auto merge of #55119 - varkor:unwarned-match-on-never, r=nikomatsakis 2018-10-20 15:02:26 +00:00
methods Clearer later use messages for calls 2018-10-03 20:32:38 +01:00
mir-dataflow Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
mismatched_types add test for float/integer 2018-09-17 14:26:58 +08:00
missing add #[panic_handler]; deprecate #[panic_implementation] 2018-08-23 20:58:55 +02:00
missing_non_modrs_mod update tests 2018-03-14 00:53:24 +01:00
mod mv codemap source_map 2018-08-19 23:01:01 +02:00
moves Don't emit cannot move errors twice in migrate mode 2018-10-29 20:22:01 +00:00
mut Rollup merge of #54787 - varkor:unused-mut-in-desugaring, r=nikomatsakis 2018-10-05 22:33:13 +02:00
namespace Update tests 2018-10-26 17:27:22 +02:00
nll Auto merge of #55305 - nikomatsakis:universes-refactor-3, r=scalexm 2018-11-02 01:19:17 +00:00
non-exhaustive Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
non_modrs_mods Stabilization change for mod.rs 2018-09-08 19:41:46 -07:00
non_modrs_mods_and_inline_mods Fix ordering of nested modules in non-mod.rs mods 2018-10-18 17:11:51 -07:00
not-panic Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
numeric Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
object-lifetime Update output for borrowck=migrate compare mode. 2018-10-17 00:57:32 +02:00
object-safety Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
obsolete-in-place Tidy no longer fails when there are no files or subdirectories in a test directory. 2018-08-14 11:12:09 +02:00
on-unimplemented Make sure all ui/parse tests have -Z parse-only 2018-10-21 14:06:29 +03:00
packed-struct Normalize tests for i686 Windows. 2018-08-14 11:12:11 +02:00
panic-handler Extend lang items to assert correct target. 2018-10-11 19:36:51 +02:00
panic-implementation libsyntax: add optional help message for deprecated features 2018-09-17 16:09:23 +00:00
panic-runtime Moved problematic tests on wasm32-unknown back to compile-fail. 2018-08-14 11:12:12 +02:00
parser Rollup merge of #55298 - estebank:macro-def, r=pnkfelix 2018-10-26 23:06:30 +08:00
pattern Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
print-fuel Rename must-compile-successfully into compile-pass 2018-04-13 23:28:03 +02:00
print_type_sizes Rollup merge of #50808 - SimonSapin:nonzero, r=alexcrichton 2018-05-17 05:18:21 +08:00
privacy Rollup merge of #55199 - oli-obk:instance_printing, r=davidtwco 2018-10-28 21:38:53 +08:00
pub Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
qualified structured suggestion for E0223 ambiguous associated type 2018-10-11 21:10:35 -07:00
range Fix test for windows os 2018-10-09 08:24:29 +02:00
reachable Remove outdated test 2018-10-16 19:52:35 +01:00
recursion Deduplicate all the ~~things~~ errors 2018-10-25 16:47:35 +02:00
regions Auto merge of #54490 - wesleywiser:rewrite_it_in_mir, r=oli-obk 2018-10-25 20:40:31 +00:00
repr cleanup: Add main functions to some UI tests 2018-08-31 18:56:15 +03:00
reserved resolve: Consolidate error reporting for resolved macros in fn resolve_macro_to_def 2018-08-20 23:12:36 +03:00
resolve resolve: Desugar empty import groups into synthetic dummy imports 2018-10-28 03:06:38 +03:00
return Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rfc-0107-bind-by-move-pattern-guards Tests for feature(bind_by_move_pattern_guards). 2018-09-17 13:46:50 +02:00
rfc-1937-termination-trait Introduce Custom Test Frameworks 2018-09-04 22:33:00 -07:00
rfc-2005-default-binding-mode Clearer later use messages for calls 2018-10-03 20:32:38 +01:00
rfc-2008-non-exhaustive resolve: More precise spans for privacy errors 2018-10-28 02:56:12 +03:00
rfc-2093-infer-outlives stabalize infer outlives requirements (RFC 2093). 2018-09-11 11:40:04 -04:00
rfc-2126-crate-paths rustc_resolve: don't allow paths starting with ::crate. 2018-08-17 12:59:56 +03:00
rfc-2126-extern-absolute-paths rustc_resolve: always include core, std and meta in the extern prelude. 2018-09-15 22:48:10 +03:00
rfc-2126-extern-in-paths rustc_resolve: don't allow ::crate_name to bypass extern_prelude. 2018-09-15 22:48:10 +03:00
rfc-2166-underscore-imports Don't emit "unused extern crate" warnings for extern crate foo as _; 2018-08-29 08:53:54 -07:00
rfc-2306 convert-id: tests for const gating. 2018-08-19 21:06:43 +02:00
rfc-2361-dbg-macro dbg_macro: fix line numbers 2018-09-23 22:48:24 +02:00
rfc-2497-if-let-chains fix typos in various places 2018-10-23 15:56:25 +02:00
rfc1445 Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rfc1598-generic-associated-types Fix typos found by codespell. 2018-08-19 17:41:28 +02:00
rfc1717 Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
run-pass/traits add a special case for literal 'static: 'a where-clauses 2018-10-01 22:44:45 +03:00
rust-2018 Add note linking to Rust 2018 path semantics docs. 2018-10-28 09:16:10 +01:00
self structured suggestion for E0223 ambiguous associated type 2018-10-11 21:10:35 -07:00
shadowed resolve: More precise spans for privacy errors 2018-10-28 02:56:12 +03:00
simd-intrinsic Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
single-use-lifetime structured suggestions for unused-lifetimes lint 2018-10-07 19:17:39 -07:00
span Auto merge of #55236 - petrochenkov:pfail, r=davidtwco 2018-10-21 17:26:16 +00:00
specialization fix typos in various places 2018-10-23 15:56:25 +02:00
stability-attribute Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
static Don't emit cannot move errors twice in migrate mode 2018-10-29 20:22:01 +00:00
str Lift some Sized checks. 2018-08-19 08:07:33 +09:00
structs resolve: More precise spans for privacy errors 2018-10-28 02:56:12 +03:00
suggestions Auto merge of #54979 - estebank:path-unsized, r=nikomatsakis 2018-10-18 21:42:21 +00:00
svh Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
symbol-names Include InstanceDef's discriminant in the symbol hash. 2018-10-24 21:59:07 +09:00
test-shadowing resolve: Remove unshadowable_attrs 2018-09-10 04:04:51 +03:00
tool-attributes Stabilize a few secondary macro features 2018-08-23 01:13:17 +03:00
traits update tests that have changed output 2018-11-01 18:16:22 -04:00
transmute Normalize tests for i686 Windows. 2018-08-14 11:12:11 +02:00
trivial-bounds Don't emit cannot move errors twice in migrate mode 2018-10-29 20:22:01 +00:00
try-block Use the span of the user type for AscribeUserType 2018-10-10 11:56:16 +01:00
tuple cleanup: Add main functions to some UI tests 2018-08-31 18:56:15 +03:00
type Report const eval error inside the query 2018-10-25 16:46:19 +02:00
typeck stabalize infer outlives requirements (RFC 2093). 2018-09-11 11:40:04 -04:00
ufcs structured suggestion for E0223 ambiguous associated type 2018-10-11 21:10:35 -07:00
unboxed-closures Rollup merge of #55494 - pnkfelix:issue-55492-borrowck-migrate-must-look-at-parents-of-closures, r=davidtwco 2018-10-30 18:55:37 +08:00
underscore-lifetime Rollup merge of #55173 - estebank:suggest-static, r=oli-obk 2018-10-25 14:31:03 +02:00
uninhabited Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
union updates to expected output for other ui tests. 2018-10-16 17:11:36 +02:00
unreachable resolve: More precise spans for privacy errors 2018-10-28 02:56:12 +03:00
unresolved fix other tests failing due to change in case or new suggestion for extern crate 2018-10-17 01:21:40 +02:00
unsafe Stabilize min_const_fn 2018-10-05 10:36:14 +02:00
unsized Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unsized-locals Don't emit cannot move errors twice in migrate mode 2018-10-29 20:22:01 +00:00
unused List allowed tokens after macro fragments 2018-10-25 11:08:58 -07:00
use resolve: More precise spans for privacy errors 2018-10-28 02:56:12 +03:00
variadic Fix typos found by codespell. 2018-08-19 17:41:28 +02:00
variance Update output for borrowck=migrate compare mode. 2018-10-17 00:57:32 +02:00
variants fix other tests failing due to change in case or new suggestion for extern crate 2018-10-17 01:21:40 +02:00
vec Point at macro definition when no rules expect token 2018-10-23 21:44:46 -07:00
wf Use new region infer errors for explaining borrows 2018-10-21 12:35:00 +01:00
where-clauses Fix typos found by codespell. 2018-08-19 17:41:28 +02:00
xcrate resolve: More precise spans for privacy errors 2018-10-28 02:56:12 +03:00
.gitattributes Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
absolute-paths-in-nested-use-groups.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
absolute-paths-in-nested-use-groups.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
access-mode-in-closures.nll.stderr Don't emit cannot move errors twice in migrate mode 2018-10-29 20:22:01 +00:00
access-mode-in-closures.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
access-mode-in-closures.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
allocator-submodule.rs fix test 2018-06-24 16:16:14 -05:00
allocator-submodule.stderr actually fix test 2018-06-24 16:16:14 -05:00
anon-params-denied-2018.rs fix tests 2018-08-24 15:48:00 -05:00
anon-params-denied-2018.stderr fix tests 2018-08-24 15:48:00 -05:00
anon-params-deprecated.fixed fix tests 2018-08-24 15:48:00 -05:00
anon-params-deprecated.rs fix tests 2018-08-24 15:48:00 -05:00
anon-params-deprecated.stderr fix test stderrs 2018-08-27 13:06:26 -05:00
anonymous-higher-ranked-lifetime.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
anonymous-higher-ranked-lifetime.stderr add dyn to display of dynamic (trait) type names 2018-06-23 18:10:25 -07:00
arbitrary-self-types-not-object-safe.rs Add new tests and update existing for object-safe custom receivers 2018-11-01 18:16:22 -04:00
arbitrary-self-types-not-object-safe.stderr Replace UncoeribleReceiver error message with UndispatchableReceiver 2018-11-01 18:16:59 -04:00
arg-count-mismatch.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
arg-count-mismatch.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
arg-type-mismatch.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
arg-type-mismatch.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
array-break-length.rs Fix an ICE using break and continue as array lengths 2018-07-02 19:43:16 +01:00
array-break-length.stderr Fix an ICE using break and continue as array lengths 2018-07-02 19:43:16 +01:00
array-not-vector.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
array-not-vector.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
array_const_index-0.rs add the lint back to the list, and fix tests 2018-10-25 16:48:15 +02:00
array_const_index-0.stderr add the lint back to the list, and fix tests 2018-10-25 16:48:15 +02:00
array_const_index-1.rs add the lint back to the list, and fix tests 2018-10-25 16:48:15 +02:00
array_const_index-1.stderr add the lint back to the list, and fix tests 2018-10-25 16:48:15 +02:00
as-ref.rs Implement existential types 2018-07-18 10:53:08 +02:00
as-ref.stderr Implement existential types 2018-07-18 10:53:08 +02:00
assign-imm-local-twice.ast.nll.stderr use structured suggestion for "missing mut" label 2018-09-12 17:16:18 -04:00
assign-imm-local-twice.ast.stderr use structured suggestion for "missing mut" label 2018-09-12 17:16:18 -04:00
assign-imm-local-twice.mir.stderr use structured suggestion for "missing mut" label 2018-09-12 17:16:18 -04:00
assign-imm-local-twice.rs use structured suggestion for "missing mut" label 2018-09-12 17:16:18 -04:00
assign-to-method.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
assign-to-method.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
assignment-operator-unimplemented.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
assignment-operator-unimplemented.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
assoc-inherent.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
assoc-inherent.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
associated-path-shl.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
associated-path-shl.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
async-fn-multiple-lifetimes.rs add edition compiletest header + fix tests 2018-06-26 19:32:00 -05:00
async-fn-multiple-lifetimes.stderr Use MultiSpan in E0707 and E709 2018-07-22 12:19:34 -07:00
async-matches-expr.rs async can begin expressions 2018-08-01 09:50:15 -07:00
attempted-access-non-fatal.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
attempted-access-non-fatal.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
attr-bad-crate-attr.rc Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
attr-eq-token-tree.rs syntax: Enforce attribute grammar in the parser 2018-08-15 00:05:55 +03:00
attr-usage-inline.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
attr-usage-inline.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
attr-usage-repr.rs Stabilize 'attr_literals' feature. 2018-08-23 19:06:07 -07:00
attr-usage-repr.stderr Stabilize 'attr_literals' feature. 2018-08-23 19:06:07 -07:00
augmented-assignments.nll.stderr use structured suggestion for "missing mut" label 2018-09-12 17:16:18 -04:00
augmented-assignments.rs use structured suggestion for "missing mut" label 2018-09-12 17:16:18 -04:00
augmented-assignments.stderr use structured suggestion for "missing mut" label 2018-09-12 17:16:18 -04:00
auto-ref-slice-plus-ref.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
auto-ref-slice-plus-ref.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
auto-trait-validation.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
auto-trait-validation.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
autoderef-full-lval.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
autoderef-full-lval.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
bastion-of-the-turbofish.rs Lament the invincibility of the Turbofish 2018-08-22 23:25:28 +01:00
binary-op-on-double-ref.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
binary-op-on-double-ref.stderr fixed double ref hint 2018-05-11 15:12:53 +03:00
bogus-tag.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
bogus-tag.stderr update tests 2018-03-14 00:53:24 +01:00
bounds-lifetime.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
bounds-lifetime.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
break-outside-loop.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
break-outside-loop.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
break-while-condition.rs --bless the tests 2018-05-25 17:31:45 +01:00
break-while-condition.stderr Fix incorrect type mismatch label pointing at return type 2018-06-29 10:36:32 -07:00
by-move-pattern-binding.nll.stderr Don't emit cannot move errors twice in migrate mode 2018-10-29 20:22:01 +00:00
by-move-pattern-binding.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
by-move-pattern-binding.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
call-fn-never-arg-wrong-type.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
call-fn-never-arg-wrong-type.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
can-begin-expr-check.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
can-begin-expr-check.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
cannot-mutate-captured-non-mut-var.ast.nll.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
cannot-mutate-captured-non-mut-var.ast.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
cannot-mutate-captured-non-mut-var.mir.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
cannot-mutate-captured-non-mut-var.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
capture1.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
capture1.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
cast_char.rs Fix spelling s/casted/cast/ 2018-03-01 12:54:16 +01:00
cast_char.stderr Rollup merge of #48403 - lukaslueg:casted, r=steveklabnik 2018-03-06 16:25:28 +08:00
casts-differing-anon.rs Stabilize conservative_impl_trait 2018-03-26 10:43:03 +02:00
casts-differing-anon.stderr Stabilize conservative_impl_trait 2018-03-26 10:43:03 +02:00
casts-issue-46365.rs Update check::cast::pointer_kind logic to new rustc 2017-12-23 23:38:09 +02:00
casts-issue-46365.stderr update tests 2018-03-14 00:53:24 +01:00
cdylib-deps-must-be-static.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
cdylib-deps-must-be-static.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
changing-crates.rs Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
changing-crates.stderr update tests 2018-03-14 00:53:24 +01:00
check-static-immutable-mut-slices.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
check-static-immutable-mut-slices.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
check-static-values-constraints.nll.stderr Don't emit cannot move errors twice in migrate mode 2018-10-29 20:22:01 +00:00
check-static-values-constraints.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
check-static-values-constraints.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
class-cast-to-trait.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
class-cast-to-trait.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
class-method-missing.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
class-method-missing.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
class-missing-self.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
class-missing-self.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
cleanup-rvalue-scopes-cf.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
cleanup-rvalue-scopes-cf.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
closure-expected.rs When closure with no arguments was expected, suggest wrapping 2018-08-15 13:05:01 -07:00
closure-expected.stderr When closure with no arguments was expected, suggest wrapping 2018-08-15 13:05:01 -07:00
closure_promotion.rs Enable NLL compare mode for more tests 2018-09-27 22:30:04 +01:00
closure_promotion.stderr Enable NLL compare mode for more tests 2018-09-27 22:30:04 +01:00
command-line-diagnostics.nll.stderr use structured suggestion for "missing mut" label 2018-09-12 17:16:18 -04:00
command-line-diagnostics.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
command-line-diagnostics.stderr update tests 2018-03-14 00:53:24 +01:00
compile_error_macro.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
compile_error_macro.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
concat.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
concat.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
conflicting-repr-hints.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
conflicting-repr-hints.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
conservative_impl_trait.rs Reword rustc_on_unimplemented errors for Iterator 2018-10-09 18:53:53 -07:00
conservative_impl_trait.stderr Reword rustc_on_unimplemented errors for Iterator 2018-10-09 18:53:53 -07:00
constructor-lifetime-args.rs Fix some remaining tests 2018-08-19 20:03:02 +01:00
constructor-lifetime-args.stderr updates tests to use new error code 2018-08-24 08:51:25 -04:00
conversion-methods.rs Implement existential types 2018-07-18 10:53:08 +02:00
conversion-methods.stderr Implement existential types 2018-07-18 10:53:08 +02:00
copy-a-resource.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
copy-a-resource.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
crate-in-paths.rs Remove crate_visibility_modifier from 2018 edition 2018-09-09 02:28:13 +02:00
crate-in-paths.stderr make the test only deal with edition flags 2018-08-16 19:20:27 +00:00
crate-name-mismatch.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
crate-name-mismatch.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
custom-attribute-multisegment.rs Stabilize a few secondary macro features 2018-08-23 01:13:17 +03:00
custom-attribute-multisegment.stderr Address review comments 2018-08-06 23:55:53 +03:00
custom-test-frameworks-simple.rs Introduce Custom Test Frameworks 2018-09-04 22:33:00 -07:00
custom_attribute.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
custom_attribute.stderr resolve: Consolidate error reporting for resolved macros in fn resolve_macro_to_def 2018-08-20 23:12:36 +03:00
cycle-projection-based-on-where-clause.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
cycle-projection-based-on-where-clause.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
dead-code-closure-bang.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
dead-code-ret.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
dead-code-ret.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
defaulted-never-note.rs Fix typos found by codespell. 2018-08-19 17:41:28 +02:00
defaulted-never-note.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
deref-non-pointer.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
deref-non-pointer.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
deref-suggestion.rs readd final newline 2018-08-26 18:03:57 -07:00
deref-suggestion.stderr Do not suggest dereferencing in macro 2018-08-26 16:54:06 -07:00
destructure-trait-ref.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
destructure-trait-ref.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
diverging-fn-tail-35849.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
diverging-fn-tail-35849.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
diverging-tuple-parts-39485.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
diverging-tuple-parts-39485.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
does-nothing.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
does-nothing.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
dont-suggest-private-trait-method.rs Implement existential types 2018-07-18 10:53:08 +02:00
dont-suggest-private-trait-method.stderr Implement existential types 2018-07-18 10:53:08 +02:00
dotdotdot-expr.rs Implement existential types 2018-07-18 10:53:08 +02:00
dotdotdot-expr.stderr Implement existential types 2018-07-18 10:53:08 +02:00
double-import.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
double-import.stderr fix other tests failing due to change in case or new suggestion for extern crate 2018-10-17 01:21:40 +02:00
double-type-import.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
double-type-import.stderr fix other tests failing due to change in case or new suggestion for extern crate 2018-10-17 01:21:40 +02:00
duplicate_entry_error.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
duplicate_entry_error.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
dyn-trait-compatibility.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
dyn-trait-compatibility.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0501.ast.nll.stderr Clearer later use messages for calls 2018-10-03 20:32:38 +01:00
E0501.ast.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0501.mir.stderr Clearer later use messages for calls 2018-10-03 20:32:38 +01:00
E0501.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0506.ast.nll.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0506.ast.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0506.mir.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0506.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0508-fail.ast.nll.stderr Add files I forgot to commit earlier 2018-08-15 15:14:21 -07:00
E0508-fail.ast.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0508-fail.mir.stderr Bless tests 2018-08-15 15:14:21 -07:00
E0508-fail.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0508.ast.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0508.mir.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0508.nll.stderr Add files I forgot to commit earlier 2018-08-15 15:14:21 -07:00
E0508.rs Update tests for grouped nll move errors 2018-06-27 22:46:58 +01:00
E0508.stderr Update tests for grouped nll move errors 2018-06-27 22:46:58 +01:00
E0583.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0583.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0594.ast.nll.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0594.ast.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0594.mir.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0594.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0596.ast.nll.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0596.ast.stderr use structured suggestion for "missing mut" label 2018-09-12 17:16:18 -04:00
E0596.mir.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0596.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
E0642.rs Clean up and add extra tests 2018-08-11 21:25:48 +01:00
E0642.stderr Clean up and add extra tests 2018-08-11 21:25:48 +01:00
E0660.rs enable more tests on stage1 again 2018-08-16 16:30:54 +02:00
E0660.stderr enable more tests on stage1 again 2018-08-16 16:30:54 +02:00
E0661.rs enable more tests on stage1 again 2018-08-16 16:30:54 +02:00
E0661.stderr enable more tests on stage1 again 2018-08-16 16:30:54 +02:00
E0662.rs enable more tests on stage1 again 2018-08-16 16:30:54 +02:00
E0662.stderr enable more tests on stage1 again 2018-08-16 16:30:54 +02:00
E0663.rs enable more tests on stage1 again 2018-08-16 16:30:54 +02:00
E0663.stderr enable more tests on stage1 again 2018-08-16 16:30:54 +02:00
E0664.rs enable more tests on stage1 again 2018-08-16 16:30:54 +02:00
E0664.stderr enable more tests on stage1 again 2018-08-16 16:30:54 +02:00
E0665.rs enable more tests on stage1 again 2018-08-16 16:30:54 +02:00
E0665.stderr enable more tests on stage1 again 2018-08-16 16:30:54 +02:00
E0705.rs Add a stub feature so we can still test E0705 2018-10-19 22:26:02 -07:00
E0705.stderr Add a stub feature so we can still test E0705 2018-10-19 22:26:02 -07:00
elide-errors-on-mismatched-tuple.rs Do not emit E0277 on incorrect tuple destructured binding 2018-09-11 17:09:22 -07:00
elide-errors-on-mismatched-tuple.stderr Do not emit E0277 on incorrect tuple destructured binding 2018-09-11 17:09:22 -07:00
elided-test.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
elided-test.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
enable-unstable-lib-feature.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
enable-unstable-lib-feature.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
enums-pats-not-idents.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
enums-pats-not-idents.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
error-festival.rs Reduce error codes length when too much are thrown 2018-02-25 12:15:05 +01:00
error-festival.stderr resolve: More precise spans for privacy errors 2018-10-28 02:56:12 +03:00
error-should-say-copy-not-pod.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
error-should-say-copy-not-pod.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
estr-subtyping.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
estr-subtyping.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
eval-enum.rs Report const eval error inside the query 2018-10-25 16:46:19 +02:00
eval-enum.stderr Report const eval error inside the query 2018-10-25 16:46:19 +02:00
exclusive-drop-and-copy.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
exclusive-drop-and-copy.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
exhaustive_integer_patterns.rs Add some extra edge case tests 2018-08-21 23:55:57 +01:00
exhaustive_integer_patterns.stderr Add some extra edge case tests 2018-08-21 23:55:57 +01:00
expanded-cfg.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
expanded-cfg.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
explain.rs Rename must-compile-successfully into compile-pass 2018-04-13 23:28:03 +02:00
explain.stdout fix more typos found by codespell. 2018-02-17 17:38:49 +01:00
export-fully-qualified.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
export-fully-qualified.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
export-import.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
export-import.stderr resolve: More precise spans for privacy errors 2018-10-28 02:56:12 +03:00
export-tag-variant.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
export-tag-variant.stderr resolve: More precise spans for privacy errors 2018-10-28 02:56:12 +03:00
export.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
export.stderr resolve: More precise spans for privacy errors 2018-10-28 02:56:12 +03:00
export2.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
export2.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
expr_attr_paren_order.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
expr_attr_paren_order.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
ext-nonexistent.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
ext-nonexistent.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
extoption_env-no-args.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
extoption_env-no-args.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
extoption_env-not-string-literal.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
extoption_env-not-string-literal.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
extoption_env-too-many-args.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
extoption_env-too-many-args.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
fail-no-dead-code-core.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
fail-no-dead-code-core.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
fail-no-dead-code.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
fail-no-dead-code.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
fail-simple.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
fail-simple.stderr Point at macro definition when no rules expect token 2018-10-23 21:44:46 -07:00
fat-ptr-cast.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
fat-ptr-cast.stderr add dyn to display of dynamic (trait) type names 2018-06-23 18:10:25 -07:00
feature-gate-custom_test_frameworks.rs Move #[test_case] to a syntax extension 2018-09-04 22:33:23 -07:00
feature-gate-custom_test_frameworks.stderr Move #[test_case] to a syntax extension 2018-09-04 22:33:23 -07:00
feature-gate-doc_cfg-cfg-rustdoc.rs feature(doc_cfg): set cfg(rustdoc) when rustdoc is running 2018-08-31 13:29:10 -05:00
feature-gate-doc_cfg-cfg-rustdoc.stderr feature(doc_cfg): set cfg(rustdoc) when rustdoc is running 2018-08-31 13:29:10 -05:00
feature-gate-exhaustive_integer_patterns.rs Add feature gate test 2018-08-16 20:09:04 +01:00
feature-gate-exhaustive_integer_patterns.stderr Add feature gate test 2018-08-16 20:09:04 +01:00
feature-gate-underscore_const_names.rs Support underscore as constant name 2018-10-14 10:14:58 +02:00
feature-gate-underscore_const_names.stderr Support underscore as constant name 2018-10-14 10:14:58 +02:00
feature-gate-unsized_locals.rs Add #![feature(unsized_locals)]. 2018-08-19 08:07:33 +09:00
feature-gate-unsized_locals.stderr Lift some Sized checks. 2018-08-19 08:07:33 +09:00
feature-gated-feature-in-macro-arg.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
feature-gated-feature-in-macro-arg.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
float-literal-inference-restrictions.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
float-literal-inference-restrictions.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
fn_must_use.rs #[must_use] for associated functions is supposed to actually work 2018-10-12 22:01:43 -07:00
fn_must_use.stderr Unused result warning: "X which must" ↦ "X that must" 2018-10-14 18:25:30 +01:00
foreign-fn-return-lifetime.fixed Suggest appropriate syntax on missing lifetime specifier in return type 2018-10-22 14:54:29 -07:00
foreign-fn-return-lifetime.rs Suggest appropriate syntax on missing lifetime specifier in return type 2018-10-22 14:54:29 -07:00
foreign-fn-return-lifetime.stderr review comments 2018-10-22 14:56:02 -07:00
foreign-unsafe-fn-called.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
foreign-unsafe-fn-called.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
future-incompatible-lint-group.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
future-incompatible-lint-group.stderr fix test stderrs 2018-08-27 13:06:26 -05:00
gated-bad-feature.rs cleanup: Add main functions to some UI tests 2018-08-31 18:56:15 +03:00
gated-bad-feature.stderr cleanup: Add main functions to some UI tests 2018-08-31 18:56:15 +03:00
generator-yielding-or-returning-itself.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
generator-yielding-or-returning-itself.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
glob-cycles.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
glob-cycles.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
glob-resolve1.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
glob-resolve1.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
hashmap-iter-value-lifetime.nll.stderr Clearer later use messages for calls 2018-10-03 20:32:38 +01:00
hashmap-iter-value-lifetime.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
hashmap-iter-value-lifetime.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
hashmap-lifetimes.nll.stderr Clearer later use messages for calls 2018-10-03 20:32:38 +01:00
hashmap-lifetimes.rs Removed ignore-test-compare-mode-nll from hashmap-lifetimes.rs 2018-08-15 23:47:28 +02:00
hashmap-lifetimes.stderr Removed ignore-test-compare-mode-nll from hashmap-lifetimes.rs 2018-08-15 23:47:28 +02:00
hidden-rt-injection.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
hidden-rt-injection.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
hidden-rt-injection2.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
hidden-rt-injection2.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
higher-lifetime-bounds.rs Split param-bounds-ignored into two, it was testing two independent things 2018-03-10 11:25:12 +01:00
higher-lifetime-bounds.stderr Split param-bounds-ignored into two, it was testing two independent things 2018-03-10 11:25:12 +01:00
huge-array-simple.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
huge-array.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
huge-array.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
huge-enum.rs Normalize tests for i686 Windows. 2018-08-14 11:12:11 +02:00
huge-enum.stderr Normalize tests for i686 Windows. 2018-08-14 11:12:11 +02:00
huge-struct.rs Normalize tests for i686 Windows. 2018-08-14 11:12:11 +02:00
huge-struct.stderr Normalize tests for i686 Windows. 2018-08-14 11:12:11 +02:00
illegal-ufcs-drop.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
illegal-ufcs-drop.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
immut-function-arguments.ast.nll.stderr move tests to borrowck directory, remove feature(nll) 2018-08-19 08:15:13 -07:00
immut-function-arguments.ast.stderr use structured suggestion for "missing mut" label 2018-09-12 17:16:18 -04:00
immut-function-arguments.mir.stderr move tests to borrowck directory, remove feature(nll) 2018-08-19 08:15:13 -07:00
immut-function-arguments.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
impl-bounds-checking.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
impl-bounds-checking.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
impl-duplicate-methods.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
impl-duplicate-methods.stderr update tests 2018-03-14 00:53:24 +01:00
impl-unused-rps-in-assoc-type.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
impl-unused-rps-in-assoc-type.stderr update tests 2018-03-14 00:53:24 +01:00
impl-unused-tps-inherent.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
impl-unused-tps-inherent.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
impl-unused-tps.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
impl-unused-tps.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
implicit-method-bind.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
implicit-method-bind.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
import.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
import.stderr resolve: More precise spans for privacy errors 2018-10-28 02:56:12 +03:00
import2.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
import2.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
import3.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
import3.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
import4.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
import4.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
impossible_range.rs Stabilize inclusive_range_syntax language feature. 2018-03-15 16:58:02 +08:00
impossible_range.stderr Stabilize inclusive_range_syntax language feature. 2018-03-15 16:58:02 +08:00
inaccessible-test-modules.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
inaccessible-test-modules.stderr Introduce Custom Test Frameworks 2018-09-04 22:33:00 -07:00
index-bot.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
index-bot.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
index-help.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
index-help.stderr update tests 2018-03-14 00:53:24 +01:00
index_message.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
index_message.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
indexing-requires-a-uint.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
indexing-requires-a-uint.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
inhabitedness-infinite-loop.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
inhabitedness-infinite-loop.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
init-unsafe.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
init-unsafe.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
inline-asm-bad-constraint.rs fixup! codegen_llvm: check inline assembly constraints with LLVM 2018-09-26 16:23:10 +02:00
inline-asm-bad-constraint.stderr fixup! codegen_llvm: check inline assembly constraints with LLVM 2018-09-26 16:23:10 +02:00
inline-asm-bad-operand.rs Add a test for multiple cases of E0669 2018-10-30 22:09:56 +01:00
inline-asm-bad-operand.stderr Add a test for multiple cases of E0669 2018-10-30 22:09:56 +01:00
inner-static-type-parameter.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
inner-static-type-parameter.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
integer-literal-suffix-inference.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
integer-literal-suffix-inference.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
integral-indexing.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
integral-indexing.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
integral-variable-unification-error.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
integral-variable-unification-error.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
intrinsic-invalid-number-of-arguments.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
intrinsic-invalid-number-of-arguments.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
invalid_crate_type_syntax.rs cleanup: Add main functions to some UI tests 2018-08-31 18:56:15 +03:00
invalid_crate_type_syntax.stderr cleanup: Add main functions to some UI tests 2018-08-31 18:56:15 +03:00
invalid_dispatch_from_dyn_impls.rs Add a check for reprs that could change the ABI 2018-11-01 18:16:59 -04:00
invalid_dispatch_from_dyn_impls.stderr Add a check for reprs that could change the ABI 2018-11-01 18:16:59 -04:00
issue-40827.rs Deduplicate errors in the obligation forest. 2018-09-30 20:01:35 +01:00
issue-40827.stderr Deduplicate errors in the obligation forest. 2018-09-30 20:01:35 +01:00
issue-49556.rs Convert issue-49556.rs to compile-pass 2018-10-04 14:55:40 +02:00
issue-51602.rs Adddressed #51602 2018-08-14 19:05:27 +00:00
issue-51602.stderr Adddressed #51602 2018-08-14 19:05:27 +00:00
issue-52717.rs Fixed: Multiple errors on single typo in match pattern 2018-10-19 10:33:49 +00:00
issue-52717.stderr Fixed: Multiple errors on single typo in match pattern 2018-10-19 10:33:49 +00:00
issue-52992.rs use TypeOp machinery for outlives_bounds 2018-08-23 07:38:47 -04:00
issue-53251.rs Update new ui tests 2018-08-20 00:08:01 +01:00
issue-53251.stderr updates tests to use new error code 2018-08-24 08:51:25 -04:00
issue-53300.rs Move non-existant type return test to the ui suite 2018-08-21 12:45:51 -04:00
issue-53300.stderr Move non-existant type return test to the ui suite 2018-08-21 12:45:51 -04:00
issue-53419.rs stabalize infer outlives requirements (RFC 2093). 2018-09-11 11:40:04 -04:00
issue-53565.rs Fixed 53359: E0432 unresolved import on the same line is now emiting one diagnostic 2018-09-08 15:11:04 +00:00
issue-53565.stderr Fixed 53359: E0432 unresolved import on the same line is now emiting one diagnostic 2018-09-08 15:11:04 +00:00
issue-53568.rs resolve type variables in the custom type op pathway 2018-08-23 07:38:47 -04:00
issue-53692.rs 53692: Addressed Estebank's Nits 2018-09-09 13:43:41 +00:00
issue-53692.stderr 53692: Addressed Estebank's Nits 2018-09-09 13:43:41 +00:00
issue-53840.rs Consolidate pattern check errors 2018-10-02 05:51:02 +00:00
issue-53840.stderr Consolidate pattern check errors 2018-10-02 05:51:02 +00:00
issue-54302-cases.rs handle outlives predicates in trait evaluation 2018-10-01 22:44:45 +03:00
issue-54302-cases.stderr handle outlives predicates in trait evaluation 2018-10-01 22:44:45 +03:00
issue-54302.rs handle outlives predicates in trait evaluation 2018-10-01 22:44:45 +03:00
issue-54302.stderr handle outlives predicates in trait evaluation 2018-10-01 22:44:45 +03:00
lang-item-missing.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
lang-item-missing.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
lexical-scopes.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
lexical-scopes.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
lifetime_starts_expressions.rs Add tests 2018-04-23 17:53:18 +02:00
lifetime_starts_expressions.stderr Add tests 2018-04-23 17:53:18 +02:00
linkage2.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
linkage2.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
linkage3.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
linkage3.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
linkage4.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
linkage4.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
lto-duplicate-symbols.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
lto-duplicate-symbols.stderr Use CGU name as LLVM module name and add some caching to CGU name generation. 2018-08-15 14:50:54 +02:00
lub-if.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
lub-if.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
lub-match.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
lub-match.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
main-wrong-location.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
main-wrong-location.stderr Add backticks to main not found errors. 2018-03-14 12:23:29 -07:00
main-wrong-type.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
main-wrong-type.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
malformed_macro_lhs.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
malformed_macro_lhs.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
map-types.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
map-types.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
maybe-bounds-where-cpass.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
maybe-bounds-where-cpass.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
maybe-bounds-where.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
maybe-bounds-where.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
maybe-bounds.rs Update tests 2018-06-10 10:37:38 +09:00
maybe-bounds.stderr Update tests 2018-06-10 10:37:38 +09:00
meta-expected-error-correct-rev.a.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
meta-expected-error-correct-rev.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
minus-string.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
minus-string.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
mir-unpretty.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
mir-unpretty.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
mir_check_nonconst.rs Clarified E0015 message, r=estebank 2018-04-18 10:56:43 +03:00
mir_check_nonconst.stderr Clarified E0015 message, r=estebank 2018-04-18 10:56:43 +03:00
missing_debug_impls.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
missing_debug_impls.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
module-macro_use-arguments.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
module-macro_use-arguments.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
multiple-main-2.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
multiple-main-2.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
multiple-main-3.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
multiple-main-3.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
multiple-plugin-registrars.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
multiple-plugin-registrars.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
mutexguard-sync.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
mutexguard-sync.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
nested-cfg-attrs.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
nested-cfg-attrs.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
nested-ty-params.rs cleanup: Add main functions to some UI tests 2018-08-31 18:56:15 +03:00
nested-ty-params.stderr cleanup: Add main functions to some UI tests 2018-08-31 18:56:15 +03:00
nested_impl_trait.rs Stabilize conservative_impl_trait 2018-03-26 10:43:03 +02:00
nested_impl_trait.stderr Stabilize conservative_impl_trait 2018-03-26 10:43:03 +02:00
never-assign-dead-code.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
never-assign-dead-code.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
never-assign-wrong-type.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
never-assign-wrong-type.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
never_transmute_never.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-args-non-move-async-closure.rs add edition compiletest header + fix tests 2018-06-26 19:32:00 -05:00
no-args-non-move-async-closure.stderr Fix error code numbers 2018-06-23 22:08:40 +02:00
no-capture-arc.nll.stderr De-duplicate moved variable errors. 2018-09-18 13:51:41 +02:00
no-capture-arc.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-capture-arc.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-implicit-prelude-nested.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-implicit-prelude-nested.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-implicit-prelude.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-implicit-prelude.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-link.rs Stabilize use_extern_macros 2018-08-17 13:14:26 +03:00
no-link.stderr Stabilize use_extern_macros 2018-08-17 13:14:26 +03:00
no-patterns-in-args-2.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-patterns-in-args-2.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-patterns-in-args-macro.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-patterns-in-args-macro.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-patterns-in-args.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
no-patterns-in-args.stderr update tests 2018-03-14 00:53:24 +01:00
no-reuse-move-arc.nll.stderr De-duplicate moved variable errors. 2018-09-18 13:51:41 +02:00
no-reuse-move-arc.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-reuse-move-arc.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-send-res-ports.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-send-res-ports.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-std-inject.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-std-inject.stderr fix other tests failing due to change in case or new suggestion for extern crate 2018-10-17 01:21:40 +02:00
no-type-for-node-ice.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-type-for-node-ice.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-warn-on-field-replace-issue-34101.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no-warn-on-field-replace-issue-34101.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no_crate_type.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no_crate_type.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no_owned_box_lang_item.rs stabalize infer outlives requirements (RFC 2093). 2018-09-11 11:40:04 -04:00
no_owned_box_lang_item.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no_send-enum.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no_send-enum.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no_send-rc.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no_send-rc.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no_send-struct.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no_send-struct.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no_share-enum.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no_share-enum.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no_share-struct.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
no_share-struct.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
noexporttypeexe.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
noexporttypeexe.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
non-constant-expr-for-arr-len.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
non-constant-expr-for-arr-len.stderr update tests 2018-03-14 00:53:24 +01:00
non-constant-in-const-path.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
non-constant-in-const-path.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
non-copyable-void.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
non-copyable-void.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
non-interger-atomic.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
non-interger-atomic.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
noncopyable-class.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
noncopyable-class.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
nonscalar-cast.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
nonscalar-cast.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
not-clone-closure.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
not-clone-closure.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
not-copy-closure.nll.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
not-copy-closure.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
not-copy-closure.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
not-enough-arguments.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
not-enough-arguments.stderr update tests 2018-03-14 00:53:24 +01:00
not-sync.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
not-sync.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
object-does-not-impl-trait.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
object-does-not-impl-trait.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
object-pointer-types.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
object-pointer-types.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
obsolete-syntax-impl-for-dotdot.rs Re-add support for impl Trait for .. to the parser 2018-01-13 19:26:49 +03:00
obsolete-syntax-impl-for-dotdot.stderr Update UI tests 2018-02-26 20:24:02 +03:00
occurs-check-2.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
occurs-check-2.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
occurs-check-3.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
occurs-check-3.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
occurs-check.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
occurs-check.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
old-suffixes-are-really-forbidden.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
old-suffixes-are-really-forbidden.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
once-cant-call-twice-on-heap.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
once-cant-call-twice-on-heap.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
opt-in-copy.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
opt-in-copy.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
or-patter-mismatch.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
or-patter-mismatch.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
order-dependent-cast-inference.rs revert making casts atomic, test order dependency 2018-03-26 22:58:36 -03:00
order-dependent-cast-inference.stderr revert making casts atomic, test order dependency 2018-03-26 22:58:36 -03:00
orphan-check-diagnostics.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
orphan-check-diagnostics.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
osx-frameworks.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
osx-frameworks.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
out-of-order-shadowing.rs resolve: Model resolve_legacy_scope after resolve_lexical_macro_path_segment 2018-09-08 14:15:10 +03:00
out-of-order-shadowing.stderr resolve: More precise spans for ambiguous resolution errors 2018-09-08 14:15:11 +03:00
output-type-mismatch.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
output-type-mismatch.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
overlap-marker-trait.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
overlap-marker-trait.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
overloaded-calls-nontuple.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
overloaded-calls-nontuple.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
panic_implementation-closures.rs stabilize #[panic_handler] 2018-09-07 13:27:30 +02:00
paren-span.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
paren-span.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
parse-error-correct.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
parse-error-correct.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
parser-recovery-1.rs Reword un-closed delimiter label 2018-09-05 03:43:24 -07:00
parser-recovery-1.stderr Change wording of unclosed delimiter label 2018-09-05 07:33:29 -07:00
parser-recovery-2.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
parser-recovery-2.stderr Reword un-closed delimiter label 2018-09-05 03:43:24 -07:00
partialeq_help.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
partialeq_help.stderr Add message to rustc_on_unimplemented attributes in core 2018-06-19 15:19:13 -07:00
path-lookahead.rs rustc: Rearchitect lints to be emitted more eagerly 2017-08-09 09:13:51 -07:00
path-lookahead.stderr Update UI tests 2018-02-26 20:24:02 +03:00
phantom-oibit.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
phantom-oibit.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
placement-syntax.rs Implement existential types 2018-07-18 10:53:08 +02:00
placement-syntax.stderr Implement existential types 2018-07-18 10:53:08 +02:00
platform-intrinsic-params.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
platform-intrinsic-params.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
pptypedef.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
pptypedef.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
prim-with-args.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
prim-with-args.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
priv-in-bad-locations.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
priv-in-bad-locations.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
ptr-coercion.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
ptr-coercion.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
question-mark-type-infer.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
question-mark-type-infer.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
quote-with-interpolated.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
quote-with-interpolated.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
reassign-ref-mut.rs Add unit test for case that didn't seem to be covered in existing UI tests 2018-06-19 19:41:54 +02:00
reassign-ref-mut.stderr Add unit test for case that didn't seem to be covered in existing UI tests 2018-06-19 19:41:54 +02:00
ref-suggestion.nll.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
ref-suggestion.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
ref-suggestion.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
refutable-pattern-errors.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
refutable-pattern-errors.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
refutable-pattern-in-fn-arg.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
refutable-pattern-in-fn-arg.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
regions-fn-subtyping-return-static-fail.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
regions-fn-subtyping-return-static-fail.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
reject-specialized-drops-8142.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
reject-specialized-drops-8142.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
removing-extern-crate.fixed tests: prefer edition: directives to compile-flags:--edition. 2018-08-16 10:36:11 +03:00
removing-extern-crate.rs update UI test 2018-09-06 23:01:35 +02:00
removing-extern-crate.stderr update UI test 2018-09-06 23:01:35 +02:00
repeat-to-run-dtor-twice.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
repeat-to-run-dtor-twice.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
repeat_count.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
repeat_count.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
repr.rs Implement existential types 2018-07-18 10:53:08 +02:00
repr.stderr Implement existential types 2018-07-18 10:53:08 +02:00
required-lang-item.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
required-lang-item.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
resolve_self_super_hint.rs Add suggestions for unresolved imports. 2018-10-03 14:43:57 +02:00
resolve_self_super_hint.stderr Add suggestions for unresolved imports. 2018-10-03 14:43:57 +02:00
ret-non-nil.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
ret-non-nil.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
retslot-cast.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
retslot-cast.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rfc1623.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rfc1623.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rmeta-lib-pass.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rmeta-pass.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rmeta-priv-warn.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rmeta.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rmeta.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rmeta_lib.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rmeta_lib.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rmeta_meta_main.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rmeta_meta_main.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rust-unstable-column-gated.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rust-unstable-column-gated.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rustc-args-required-const.rs Only promote calls to #[rustc_promotable] const fns 2018-10-03 10:07:05 +02:00
rustc-args-required-const.stderr Only promote calls to #[rustc_promotable] const fns 2018-10-03 10:07:05 +02:00
rustc-args-required-const2.rs Stabilize 'attr_literals' feature. 2018-08-23 19:06:07 -07:00
rustc-args-required-const2.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rustc-error.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
rustc-error.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
safe-extern-statics-mut.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
safe-extern-statics-mut.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
safe-extern-statics.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
safe-extern-statics.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
seq-args.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
seq-args.stderr updates tests to use new error code 2018-08-24 08:51:25 -04:00
shift-various-bad-types.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
shift-various-bad-types.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
short-error-format.rs Stabilize short error format 2018-05-31 20:09:27 +02:00
short-error-format.stderr Make short-error format GNU compatible 2018-05-31 20:09:27 +02:00
should-fail-no_gate_irrefutable_if_let_pattern.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
should-fail-no_gate_irrefutable_if_let_pattern.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
should-fail-with_gate_irrefutable_pattern_deny.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
should-fail-with_gate_irrefutable_pattern_deny.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
simd-type-generic-monomorphisation.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
simd-type-generic-monomorphisation.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
simd-type.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
simd-type.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
similar-tokens.rs Modified test case again. 2018-06-01 15:51:00 -04:00
similar-tokens.stderr Modified test case again. 2018-06-01 15:51:00 -04:00
single-primitive-inherent-impl.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
single-primitive-inherent-impl.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
sized-cycle-note.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
sized-cycle-note.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
slice-2.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
slice-2.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
slice-mut-2.nll.stderr optimize let x: T = .. to avoid a temporary 2018-09-10 08:28:56 -04:00
slice-mut-2.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
slice-mut-2.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
slice-mut.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
slice-mut.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
slightly-nice-generic-literal-messages.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
slightly-nice-generic-literal-messages.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
stable-features.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
stable-features.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
static_sized_requirement.rs Add test for no_core statics 2018-10-16 17:01:24 +02:00
staticness-mismatch.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
staticness-mismatch.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
std-uncopyable-atomics.nll.stderr Don't emit cannot move errors twice in migrate mode 2018-10-29 20:22:01 +00:00
std-uncopyable-atomics.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
std-uncopyable-atomics.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
stmt_expr_attrs_no_feature.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
stmt_expr_attrs_no_feature.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
substs-ppaux.normal.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
substs-ppaux.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
substs-ppaux.verbose.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
suffixed-literal-meta.rs Stabilize 'attr_literals' feature. 2018-08-23 19:06:07 -07:00
suffixed-literal-meta.stderr Stabilize 'attr_literals' feature. 2018-08-23 19:06:07 -07:00
super-at-top-level.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
super-at-top-level.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
suppressed-error.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
suppressed-error.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
switched-expectations.rs Fix switched types in type mismatch 2017-12-10 01:20:40 +01:00
switched-expectations.stderr update tests 2018-03-14 00:53:24 +01:00
syntax-extension-minor.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
syntax-extension-minor.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
syntax-trait-polarity-feature-gate.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
syntax-trait-polarity-feature-gate.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
syntax-trait-polarity.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
syntax-trait-polarity.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
synthetic-param.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
synthetic-param.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
tag-that-dare-not-speak-its-name.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
tag-that-dare-not-speak-its-name.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
tag-type-args.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
tag-type-args.stderr updates tests to use new error code 2018-08-24 08:51:25 -04:00
tag-variant-cast-non-nullary.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
tag-variant-cast-non-nullary.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
tag-variant-disr-dup.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
tag-variant-disr-dup.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
tail-typeck.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
tail-typeck.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
target-feature-gate.rs add feature-gate test 2018-08-08 02:10:06 +02:00
target-feature-gate.stderr update target-feature-gate.stderr output 2018-08-09 00:56:30 +02:00
target-feature-wrong.rs tests/ui: Add missing mips{64} ignores 2018-07-31 15:22:14 +02:00
target-feature-wrong.stderr tests/ui: Add missing mips{64} ignores 2018-07-31 15:22:14 +02:00
terr-in-field.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
terr-in-field.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
terr-sorts.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
terr-sorts.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
test-cfg.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
test-cfg.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
test-on-macro.rs Introduce Custom Test Frameworks 2018-09-04 22:33:00 -07:00
test-on-macro.stderr Introduce Custom Test Frameworks 2018-09-04 22:33:00 -07:00
test-should-panic-attr.rs Introduce 'run-pass' header to 'ui' tests in compiletest. Fix issue #36516. 2017-06-02 23:28:22 +08:00
test-should-panic-attr.stderr Update UI tests 2018-02-26 20:24:02 +03:00
test-warns-dead-code.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
test-warns-dead-code.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
thread-local-in-ctfe.nll.stderr Update output for borrowck=migrate compare mode. 2018-10-17 00:57:32 +02:00
thread-local-in-ctfe.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
thread-local-in-ctfe.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
tool_lints-fail.rs Remove feature(tool_lints) from tests 2018-10-09 16:38:38 -07:00
tool_lints-fail.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
tool_lints.rs Remove feature(tool_lints) from tests 2018-10-09 16:38:38 -07:00
tool_lints.stderr Improving span of unknown lint tool error message 2018-07-04 14:28:44 +02:00
trace_macros-format.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
trace_macros-format.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
trace_macros-gate.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
trace_macros-gate.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
trait-alias-fail.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
trait-alias-fail.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
trivial_casts.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
trivial_casts.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
try-on-option.rs Implement existential types 2018-07-18 10:53:08 +02:00
try-on-option.stderr Implement existential types 2018-07-18 10:53:08 +02:00
try-operator-on-main.rs Implement existential types 2018-07-18 10:53:08 +02:00
try-operator-on-main.stderr Implement existential types 2018-07-18 10:53:08 +02:00
try-poll.rs std::ops::Try impl for std::task::Poll 2018-07-25 17:26:12 -07:00
tutorial-suffix-inference-test.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
tutorial-suffix-inference-test.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
type_length_limit.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
type_length_limit.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
ui-testing-optout.rs Implement opt-out from UI testing normalization 2018-02-26 20:24:41 +03:00
ui-testing-optout.stderr update tests 2018-03-14 00:53:24 +01:00
unconstrained-none.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
unconstrained-none.stderr update tests 2018-03-14 00:53:24 +01:00
unconstrained-ref.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
unconstrained-ref.stderr update tests 2018-03-14 00:53:24 +01:00
underscore-ident-matcher.rs Reject _ in ident matcher 2018-03-17 22:08:18 +03:00
underscore-ident-matcher.stderr Point to macro def span instead of whole body 2018-10-24 11:34:23 -07:00
underscore_const_names.rs Support underscore as constant name 2018-10-14 10:14:58 +02:00
unevaluated_fixed_size_array_len.rs Produce nice array lengths on a best effort basis 2018-03-22 09:56:04 +01:00
unevaluated_fixed_size_array_len.stderr Produce nice array lengths on a best effort basis 2018-03-22 09:56:04 +01:00
unique-object-noncopyable.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unique-object-noncopyable.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unique-pinned-nocopy.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unique-pinned-nocopy.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unknown-language-item.rs Point at unknown lang item attribute 2018-01-23 21:36:40 -08:00
unknown-language-item.stderr update tests 2018-03-14 00:53:24 +01:00
unknown-lint-tool-name.rs Remove feature(tool_lints) from tests 2018-10-09 16:38:38 -07:00
unknown-lint-tool-name.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unknown-tool-name.rs Stabilize a few secondary macro features 2018-08-23 01:13:17 +03:00
unknown-tool-name.stderr Stabilize a few secondary macro features 2018-08-23 01:13:17 +03:00
unop-move-semantics.nll.stderr Don't emit cannot move errors twice in migrate mode 2018-10-29 20:22:01 +00:00
unop-move-semantics.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unop-move-semantics.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unop-neg-bool.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unop-neg-bool.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unrestricted-attribute-tokens.rs syntax: Enforce attribute grammar in the parser 2018-08-15 00:05:55 +03:00
unsized3.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unsized3.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unsized5.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unsized5.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unsized6.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unsized6.stderr Lift some Sized checks. 2018-08-19 08:07:33 +09:00
unsized7.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unsized7.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unspecified-self-in-trait-ref.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unspecified-self-in-trait-ref.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unsupported-cast.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
unsupported-cast.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
use-self-in-inner-fn.rs reword label as per review 2018-09-05 09:56:01 -07:00
use-self-in-inner-fn.stderr reword label as per review 2018-09-05 09:56:01 -07:00
used.rs stabilize #[used] 2018-09-09 15:43:28 +02:00
used.stderr update ui tests 2018-09-09 22:08:42 +02:00
useless-pub.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
useless-pub.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
useless_comment.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
useless_comment.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
user-defined-macro-rules.rs cleanup: Add main functions to some UI tests 2018-08-31 18:56:15 +03:00
user-defined-macro-rules.stderr cleanup: Add main functions to some UI tests 2018-08-31 18:56:15 +03:00
utf8_idents.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
utf8_idents.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
vector-cast-weirdness.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
vector-cast-weirdness.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
vector-no-ann.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
vector-no-ann.stderr update tests 2018-03-14 00:53:24 +01:00
vtable-res-trait-param.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
vtable-res-trait-param.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
walk-struct-literal-with.nll.stderr updates to expected output for other ui tests. 2018-10-16 17:11:36 +02:00
walk-struct-literal-with.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
walk-struct-literal-with.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
warn-path-statement.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
warn-path-statement.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
wasm-custom-section-relocations.rs cleanup: Add main functions to some UI tests 2018-08-31 18:56:15 +03:00
wasm-custom-section-relocations.stderr cleanup: Add main functions to some UI tests 2018-08-31 18:56:15 +03:00
wasm-import-module.rs rustc: Stabilize #[wasm_import_module] as #[link(...)] 2018-07-18 07:50:08 -07:00
wasm-import-module.stderr rustc: Stabilize #[wasm_import_module] as #[link(...)] 2018-07-18 07:50:08 -07:00
while-let.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
while-let.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
while-type-error.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
while-type-error.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
windows-subsystem-invalid.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
windows-subsystem-invalid.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
write-to-static-mut-in-static.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
write-to-static-mut-in-static.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
writing-to-immutable-vec.nll.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
writing-to-immutable-vec.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
writing-to-immutable-vec.stderr use structured suggestion for "missing mut" label 2018-09-12 17:16:18 -04:00
wrong-mul-method-signature.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
wrong-mul-method-signature.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
wrong-ret-type.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
wrong-ret-type.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
xc-private-method.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
xc-private-method.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
xc-private-method2.rs Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00
xc-private-method2.stderr Merged migrated compile-fail tests and ui tests. Fixes #46841. 2018-08-14 11:12:09 +02:00