rust/src/test/ui
kennytm 349115efda
Rollup merge of #47896 - zackmdavis:and_the_case_of_the_necessary_unnecessary_parens, r=nikomatsakis
decline to lint technically-unnecessary parens in function or method arguments inside of nested macros

In #46980 ("in which the unused-parens lint..." (14982db2d6)), the
unused-parens lint was made to check function and method arguments,
which it previously did not (seemingly due to oversight rather than
willful design). However, in #47775 and discussion thereon,
user–developers of Geal/nom and graphql-rust/juniper reported that the
lint was seemingly erroneously triggering on certain complex macros in
those projects. While this doesn't seem like a bug in the lint in the
particular strict sense that the expanded code would, in fact, contain
unncecessary parentheses, it also doesn't seem like the sort of thing
macro authors should have to think about: the spirit of the
unused-parens lint is to prevent needless clutter in code, not to give
macro authors extra heartache in the handling of token trees.

We propose the expediency of declining to lint unused parentheses in
function or method args inside of nested expansions: we believe that
this should eliminate the petty, troublesome lint warnings reported
in the issue, without forgoing the benefits of the lint in simpler
macros.

It seemed like too much duplicated code for the `Call` and `MethodCall`
match arms to duplicate the nested-macro check in addition to each
having their own `for` loop, so this occasioned a slight refactor so
that the function and method cases could share code—hopefully the
overall intent is at least no less clear to the gentle reader.

This is concerning #47775.
2018-02-04 23:28:56 +08:00
..
auxiliary Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
block-result Further tweaks to the output 2018-01-15 12:35:15 -08:00
borrowck Point only at method signatures and point at trait 2018-01-28 17:06:30 -08:00
check_match Update ui tests' line numbers. 2017-12-10 21:14:57 +00:00
closure-expected-type For named lifetimes point only at method signature 2018-01-28 12:07:03 -08:00
closure_context Rework expected closure error 2017-12-18 08:55:52 -08:00
codemap_tests Point at while true span instead of entire block 2017-12-19 15:48:46 -08:00
compare-method Point at def span in "impl has stricter requirements" diagnostic 2017-12-18 08:54:20 -08:00
const-eval Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
cross-crate-macro-backtrace mention nightly in -Z external-macro-backtrace note 2017-11-26 18:28:38 +00:00
cross-file-errors Add line numbers and columns to error messages spanning multiple files 2018-01-26 15:33:05 +00:00
derived-errors Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
did_you_mean On E0283, point at method with the requirements 2018-01-15 14:56:32 -08:00
dropck Point at var in short lived borrows 2017-12-14 22:45:45 -08:00
e0119 Use def span for conflicting impls and recursive fn 2017-12-17 23:46:55 -08:00
feature-gate rustc: Refactor attribute checking to operate on HIR 2018-01-13 16:07:13 -08:00
fmt On E0283, point at method with the requirements 2018-01-15 14:56:32 -08:00
generator Allow access of the state field before the generator transform. Fixes #47482, #46476 2018-01-30 11:40:39 +01:00
hello_world Add must-compile-successfully comment to appropriate ui tests. 2017-12-10 21:14:57 +00:00
impl-trait Auto merge of #47791 - estebank:mismatched-trait-impl, r=nikomatsakis 2018-02-03 01:26:56 +00:00
imports use correct casing for rename suggestions 2018-01-28 20:48:54 -05:00
in-band-lifetimes Auto merge of #46254 - Dylan-DPC:ellided-lifetime, r=nikomatsakis 2018-02-03 14:38:52 +00:00
interior-mutability Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
invalid-module-declaration Implement non-mod.rs mod statements 2017-12-19 14:58:51 -08:00
issue-37311-type-length-limit Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-38875 rustc: evaluate fixed-length array length expressions lazily. 2017-09-11 08:41:16 +03:00
issue-40402-ref-hints Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-41652 Do not use casting for suggestion to add type to numeric literal 2018-01-04 15:28:21 -08:00
lifetime-errors Don't show first assignment in loops 2017-11-27 08:07:49 +00:00
lifetimes Auto merge of #46722 - arielb1:single-self, r=eddyb 2017-12-16 09:12:04 +00:00
lint Rollup merge of #47896 - zackmdavis:and_the_case_of_the_necessary_unnecessary_parens, r=nikomatsakis 2018-02-04 23:28:56 +08:00
lub-glb "incompatible arm" diagnostic span tweak 2017-12-25 09:47:22 -08:00
macro_backtrace Fix test in macro_backtrace 2018-01-26 16:56:37 +00:00
macros Minimize weird spans involving macro context 2018-02-01 11:51:49 -08:00
mismatched_types Rollup merge of #47573 - estebank:closures, r=nikomatsakis 2018-01-20 22:32:49 +01:00
missing-items Point at def span in "missing in impl" error 2017-12-19 14:41:03 -08:00
missing_non_modrs_mod Implement non-mod.rs mod statements 2017-12-19 14:58:51 -08:00
nll Fix new test from rebase. 2018-01-27 11:46:28 +00:00
non_modrs_mods Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
on-unimplemented On E0283, point at method with the requirements 2018-01-15 14:56:32 -08:00
print-fuel Add must-compile-successfully comment to appropriate ui tests. 2017-12-10 21:14:57 +00:00
print_type_sizes Stabilized #[repr(align(x))] attribute (RFC 1358) 2018-01-23 08:36:13 +11:00
pub struct pattern parsing and diagnostic tweaks 2018-01-07 17:04:36 -08:00
reachable Add must-compile-successfully comment to appropriate ui tests. 2017-12-10 21:14:57 +00:00
resolve Further tweaks to the output 2018-01-15 12:35:15 -08:00
rfc-2005-default-binding-mode Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
rfc1598-generic-associated-types Added test to make sure that undeclared lifetimes are in fact detected 2017-12-13 18:50:45 -05:00
rfc_1940-must_use_on_functions Update ui tests' line numbers. 2017-12-10 21:14:57 +00:00
span Minimize weird spans involving macro context 2018-02-01 11:51:49 -08:00
suggestions use correct casing for rename suggestions 2018-01-28 20:48:54 -05:00
token struct pattern parsing and diagnostic tweaks 2018-01-07 17:04:36 -08:00
transmute Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
type-check On E0283, point at method with the requirements 2018-01-15 14:56:32 -08:00
union Fix rebase 2017-12-14 23:54:08 +03: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 On E0283, point at method with the requirements 2018-01-15 14:56:32 -08:00
arbitrary-self-types-not-object-safe.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
arbitrary-self-types-not-object-safe.stderr update ui/arbitrary-self-types-not-object-safe with shorter error message 2017-12-17 10:16:41 +01:00
asm-out-assign-imm.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
asm-out-assign-imm.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
associated-const-impl-wrong-lifetime.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
associated-const-impl-wrong-lifetime.stderr Point only at method signatures and point at trait 2018-01-28 17:06:30 -08:00
associated-const-impl-wrong-type.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
associated-const-impl-wrong-type.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
associated-type-projection-from-multiple-supertraits.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
associated-type-projection-from-multiple-supertraits.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
associated-types-ICE-when-projecting-out-of-err.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
associated-types-ICE-when-projecting-out-of-err.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
associated-types-in-ambiguous-context.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
associated-types-in-ambiguous-context.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
attr-usage-repr.rs Check all repr hints together when checking for mis-applied attributes 2018-01-01 22:05:29 +01:00
attr-usage-repr.stderr Check all repr hints together when checking for mis-applied attributes 2018-01-01 22:05:29 +01:00
augmented-assignments.rs Be ambiguous when type cannot be properly mentioned 2018-01-02 19:49:38 -08:00
augmented-assignments.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03: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 Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
blind-item-item-shadow.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
blind-item-item-shadow.stderr use correct casing for rename suggestions 2018-01-28 20:48:54 -05:00
bogus-tag.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
bogus-tag.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
cast-as-bool.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
cast-as-bool.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
cast-errors-issue-43825.rs Handle casts to integer/float variables 2017-12-24 11:40:54 +02:00
cast-errors-issue-43825.stderr Handle casts to integer/float variables 2017-12-24 11:40:54 +02:00
cast-rfc0401-2.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
cast-rfc0401-2.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
cast-to-unsized-trait-object-suggestion.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
cast-to-unsized-trait-object-suggestion.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
casts-differing-anon.rs Update check::cast::pointer_kind logic to new rustc 2017-12-23 23:38:09 +02:00
casts-differing-anon.stderr Update check::cast::pointer_kind logic to new rustc 2017-12-23 23:38:09 +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 check::cast::pointer_kind logic to new rustc 2017-12-23 23:38: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 Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
coercion-missing-tail-expected-type.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
coercion-missing-tail-expected-type.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
coherence-error-suppression.rs Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
coherence-error-suppression.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
coherence-impls-copy.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
coherence-impls-copy.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
coherence-overlap-downstream-inherent.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
coherence-overlap-downstream-inherent.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
coherence-overlap-downstream.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
coherence-overlap-downstream.stderr Use def span for conflicting impls and recursive fn 2017-12-17 23:46:55 -08:00
coherence-overlap-issue-23516-inherent.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
coherence-overlap-issue-23516-inherent.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
coherence-overlap-issue-23516.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
coherence-overlap-issue-23516.stderr Use def span for conflicting impls and recursive fn 2017-12-17 23:46:55 -08:00
coherence-overlap-upstream-inherent.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
coherence-overlap-upstream-inherent.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
coherence-overlap-upstream.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
coherence-overlap-upstream.stderr Use def span for conflicting impls and recursive fn 2017-12-17 23:46:55 -08: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 Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
const-deref-ptr.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
const-deref-ptr.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
const-eval-overflow-2.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
const-eval-overflow-2.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
const-eval-overflow-4.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
const-eval-overflow-4.stderr Fix rebase 2017-12-14 23:54:08 +03:00
const-eval-span.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
const-eval-span.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
const-expr-addr-operator.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
const-expr-addr-operator.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
const-fn-error.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
const-fn-error.stderr Don't add "in this macro invocation" label to desugared spans 2018-01-26 11:35:27 -08:00
const-fn-mismatch.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
const-fn-mismatch.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
const-fn-not-in-trait.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
const-fn-not-in-trait.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
const-len-underflow-separate-spans.rs Fix rebase 2017-12-14 23:54:08 +03:00
const-len-underflow-separate-spans.stderr Fix rebase 2017-12-14 23:54:08 +03:00
const-pattern-irrefutable.rs Move some tests to UI 2017-11-04 03:09:47 +03:00
const-pattern-irrefutable.stderr Give better help for identifier patterns failing exhaustiveness check 2017-11-04 03:09:47 +03:00
const-pattern-not-const-evaluable.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
const-pattern-not-const-evaluable.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
const-unsized.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
const-unsized.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
cycle-trait-supertrait-indirect.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
cycle-trait-supertrait-indirect.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
deprecated-macro_escape-inner.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
deprecated-macro_escape-inner.stderr Introduce 'run-pass' header to 'ui' tests in compiletest. Fix issue #36516. 2017-06-02 23:28:22 +08:00
deprecated-macro_escape.rs Introduce 'run-pass' header to 'ui' tests in compiletest. Fix issue #36516. 2017-06-02 23:28:22 +08:00
deprecated-macro_escape.stderr Introduce 'run-pass' header to 'ui' tests in compiletest. Fix issue #36516. 2017-06-02 23:28:22 +08:00
deref-suggestion.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
deref-suggestion.stderr type error method suggestions use whitelisted identity-like conversions 2018-01-06 17:15:59 -08:00
deriving-meta-empty-trait-list.rs Introduce 'run-pass' header to 'ui' tests in compiletest. Fix issue #36516. 2017-06-02 23:28:22 +08:00
deriving-meta-empty-trait-list.stderr Introduce 'run-pass' header to 'ui' tests in compiletest. Fix issue #36516. 2017-06-02 23:28:22 +08:00
deriving-with-repr-packed.rs improve error messages 2017-11-26 19:01:19 +02:00
deriving-with-repr-packed.stderr improve error messages 2017-11-26 19:01:19 +02:00
discrim-overflow-2.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
discrim-overflow-2.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
discrim-overflow.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
discrim-overflow.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
double-import.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
double-import.stderr use correct casing for rename suggestions 2018-01-28 20:48:54 -05:00
duplicate-check-macro-exports.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
duplicate-check-macro-exports.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
empty-struct-unit-expr.rs Further tweaks to the output 2018-01-15 12:35:15 -08:00
empty-struct-unit-expr.stderr Further tweaks to the output 2018-01-15 12:35:15 -08:00
enum-and-module-in-same-scope.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
enum-and-module-in-same-scope.stderr Point at def span on redefined name diagnostic 2017-12-17 22:44:32 -08:00
enum-size-variance.rs compiletest: Support custom normalization rules. 2017-07-11 16:57:52 +08:00
enum-size-variance.stderr compiletest: Support custom normalization rules. 2017-07-11 16:57:52 +08:00
explain.rs Add must-compile-successfully comment to appropriate ui tests. 2017-12-10 21:14:57 +00:00
explain.stdout Modify --explain to handle hidden code (# ...) and indented code blocks. 2017-06-23 15:31:53 +08:00
extern-const.rs Better diagnostics and recovery for const in extern blocks 2017-08-10 00:52:50 +01:00
extern-const.stderr Reword error hint 2017-08-10 12:31:02 +01:00
fat-ptr-cast.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
fat-ptr-cast.stderr rustc: remove misleading Ty::is_uint method. 2018-01-04 02:32:39 +02:00
feature-gate-abi-msp430-interrupt.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-abi-msp430-interrupt.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-abi.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-abi.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-abi_unadjusted.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-abi_unadjusted.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-advanced-slice-features.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-advanced-slice-features.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-allocator_internals.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-allocator_internals.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-allow-internal-unsafe-nested-macro.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-allow-internal-unsafe-nested-macro.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-allow-internal-unstable-nested-macro.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-allow-internal-unstable-nested-macro.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-allow-internal-unstable-struct.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-allow-internal-unstable-struct.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-allow-internal-unstable.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-allow-internal-unstable.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-allow_fail.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-allow_fail.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-arbitrary-self-types.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-arbitrary-self-types.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-arbitrary_self_types-raw-pointer.rs Add a feature_gate test for raw pointer self 2017-12-17 10:13:09 +01:00
feature-gate-arbitrary_self_types-raw-pointer.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-asm.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-asm.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-asm2.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-asm2.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-assoc-type-defaults.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-assoc-type-defaults.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-box-expr.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-box-expr.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-box_patterns.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-box_patterns.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-box_syntax.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-box_syntax.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-catch_expr.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-catch_expr.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-cfg-target-feature.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-cfg-target-feature.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-cfg-target-has-atomic.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-cfg-target-has-atomic.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-cfg-target-thread-local.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-cfg-target-thread-local.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-cfg-target-vendor.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-cfg-target-vendor.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-clone-closures.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-clone-closures.stderr Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-compiler-builtins.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-compiler-builtins.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-concat_idents.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-concat_idents.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-concat_idents2.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-concat_idents2.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-concat_idents3.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-concat_idents3.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-conservative_impl_trait.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-conservative_impl_trait.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-const-indexing.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-const-indexing.stderr Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-const_fn.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-const_fn.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-copy-closures.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-copy-closures.stderr Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-crate_in_paths.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-crate_in_paths.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-crate_visibility_modifier.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-crate_visibility_modifier.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-custom_attribute.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-custom_attribute.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-custom_attribute2.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-custom_attribute2.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-custom_derive.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-custom_derive.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-decl_macro.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
feature-gate-decl_macro.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-default_type_parameter_fallback.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-default_type_parameter_fallback.stderr Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-doc_cfg.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-doc_cfg.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-doc_masked.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-doc_masked.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-doc_spotlight.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-doc_spotlight.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-dotdoteq_in_patterns.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-dotdoteq_in_patterns.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-dropck-ugeh-2.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-dropck-ugeh-2.stderr Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-dropck-ugeh.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-dropck-ugeh.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-dyn-trait.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-dyn-trait.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-exclusive-range-pattern.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-exclusive-range-pattern.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-extern_absolute_paths.rs Resolve absolute paths as extern under a feature flag 2017-12-13 00:02:23 +03:00
feature-gate-extern_absolute_paths.stderr Resolve absolute paths as extern under a feature flag 2017-12-13 00:02:23 +03:00
feature-gate-extern_in_paths.rs Support extern in paths 2018-01-03 18:09:20 +03:00
feature-gate-extern_in_paths.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-extern_types.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-extern_types.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-external_doc.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-external_doc.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-feature-gate.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-feature-gate.stderr Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-fn_must_use-cap-lints-allow.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-fn_must_use-cap-lints-allow.stderr Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-fn_must_use.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-fn_must_use.stderr Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-fundamental.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-fundamental.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-generators.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-generators.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-generic_associated_types.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-generic_associated_types.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-generic_param_attrs.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-generic_param_attrs.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-global_allocator.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-global_allocator.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-global_asm.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-global_asm.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-i128_type.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-i128_type.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-i128_type2.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-i128_type2.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-in_band_lifetimes.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-in_band_lifetimes.stderr Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-intrinsics.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-intrinsics.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-lang-items.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-lang-items.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-link_args.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-link_args.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-link_cfg.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-link_cfg.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-link_llvm_intrinsics.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-link_llvm_intrinsics.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-linkage.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-linkage.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-linker-flavor.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-linker-flavor.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-log_syntax.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-log_syntax.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-log_syntax2.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-log_syntax2.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-macro-lifetime-matcher.rs Add feature gate macro_lifetime_matcher 2017-12-28 11:33:44 -05:00
feature-gate-macro-lifetime-matcher.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-macro-vis-matcher.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-macro-vis-matcher.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-main.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-main.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-match_beginning_vert.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-match_beginning_vert.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-match_default_bindings.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-match_default_bindings.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-may-dangle.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
feature-gate-may-dangle.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-naked_functions.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-naked_functions.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-needs-allocator.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-needs-allocator.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-negate-unsigned.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-negate-unsigned.stderr Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-never_type.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-never_type.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-nll.rs Add nll feature and make nll imply nll_dump_cause 2017-12-20 14:38:12 -05:00
feature-gate-nll.stderr Add nll feature and make nll imply nll_dump_cause 2017-12-20 14:38:12 -05:00
feature-gate-no-debug-2.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-no-debug-2.stderr Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-no-debug.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-no-debug.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-no_core.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-no_core.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-non_ascii_idents.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-non_ascii_idents.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-non_exhaustive.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-non_exhaustive.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-omit-gdb-pretty-printer-section.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-omit-gdb-pretty-printer-section.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-on-unimplemented.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-on-unimplemented.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-optin-builtin-traits.rs Adjust tests for removal of impl Foo for .. {} 2018-01-13 18:48:00 +03:00
feature-gate-optin-builtin-traits.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-overlapping_marker_traits.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-overlapping_marker_traits.stderr Use def span for conflicting impls and recursive fn 2017-12-17 23:46:55 -08:00
feature-gate-placement-expr.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-placement-expr.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-plugin.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-plugin.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-plugin_registrar.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-plugin_registrar.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-prelude_import.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-prelude_import.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-profiler-runtime.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-profiler-runtime.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-repr-simd.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-repr-simd.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-repr128.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
feature-gate-repr128.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-repr_transparent.rs Implement repr(transparent) 2018-01-16 08:58:32 +01:00
feature-gate-repr_transparent.stderr Implement repr(transparent) 2018-01-16 08:58:32 +01:00
feature-gate-rustc-attrs.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-rustc-attrs.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-rustc-diagnostic-macros.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-rustc-diagnostic-macros.stderr Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-rustc_const_unstable.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-rustc_const_unstable.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-sanitizer-runtime.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-sanitizer-runtime.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-simd-ffi.rs Check all repr hints together when checking for mis-applied attributes 2018-01-01 22:05:29 +01:00
feature-gate-simd-ffi.stderr Check all repr hints together when checking for mis-applied attributes 2018-01-01 22:05:29 +01:00
feature-gate-simd.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-simd.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-slice-patterns.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-slice-patterns.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-staged_api.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-staged_api.stderr Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-start.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-start.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-static-nobundle.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-static-nobundle.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-stmt_expr_attributes.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-stmt_expr_attributes.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-target_feature.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-target_feature.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-thread_local.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-thread_local.stderr don't mention tasks in stability warnings of #[thread_local] #47755 2018-01-27 13:28:09 +05:30
feature-gate-trace_macros.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-trace_macros.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-type_ascription.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-type_ascription.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-unboxed-closures-manual-impls.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-unboxed-closures-manual-impls.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-unboxed-closures-method-calls.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-unboxed-closures-method-calls.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-unboxed-closures-ufcs-calls.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-unboxed-closures-ufcs-calls.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-unboxed-closures.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-unboxed-closures.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-underscore-lifetimes.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-underscore-lifetimes.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-universal.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-universal.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-unsized_tuple_coercion.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-unsized_tuple_coercion.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-untagged_unions.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
feature-gate-untagged_unions.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-unwind-attributes.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-unwind-attributes.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-use_nested_groups.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-use_nested_groups.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-used.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-used.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
feature-gate-wasm_import_memory.rs Migrate a few feature gate tests to ui 2017-12-07 10:14:39 +01:00
feature-gate-wasm_import_memory.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
generic-type-less-params-with-defaults.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
generic-type-less-params-with-defaults.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
generic-type-more-params-with-defaults.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
generic-type-more-params-with-defaults.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
if-let-arm-types.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
if-let-arm-types.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
impl-duplicate-methods.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
impl-duplicate-methods.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03: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 Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
impossible_range.rs Do not emit type errors on recovered blocks 2017-12-21 14:57:42 -08:00
impossible_range.stderr Do not emit type errors on recovered blocks 2017-12-21 14:57:42 -08:00
index-help.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
index-help.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
inference-variable-behind-raw-pointer.rs fix ui test 2017-12-17 10:13:09 +01:00
inference-variable-behind-raw-pointer.stderr Convert warning about *const _ to a future-compat lint 2017-12-22 07:05:09 -05:00
invalid-path-in-const.rs Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
invalid-path-in-const.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-1962.rs Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-1962.stderr Point at while true span instead of entire block 2017-12-19 15:48:46 -08:00
issue-2848.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-2848.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-3008-1.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-3008-1.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-3008-2.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-3008-2.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-3044.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-3044.stderr Fix rebase 2017-12-14 23:54:08 +03:00
issue-3779.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-3779.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-4335.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-4335.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-4935.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-4935.stderr Fix rebase 2017-12-14 23:54:08 +03:00
issue-5239-1.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-5239-1.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-6458-3.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-6458-3.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-6458-4.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-6458-4.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-6458.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-6458.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-7813.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-7813.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-10969.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-10969.stderr Further tweaks to the output 2018-01-15 12:35:15 -08:00
issue-11004.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-11004.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-11319.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-11319.stderr "incompatible arm" diagnostic span tweak 2017-12-25 09:47:22 -08:00
issue-12187-1.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-12187-1.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-12187-2.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-12187-2.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-12511.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-12511.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-13058.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-13058.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-13483.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-13483.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-14092.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-14092.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-15260.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-15260.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-15524.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-15524.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-17263.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-17263.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-17441.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-17441.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-18183.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-18183.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-18819.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-18819.stderr Fix rebase 2017-12-14 23:54:08 +03:00
issue-19100.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-19100.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-19498.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-19498.stderr Point at def span on redefined name diagnostic 2017-12-17 22:44:32 -08:00
issue-19707.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-19707.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-19922.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-19922.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-20692.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-20692.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-21546.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-21546.stderr Point at def span on redefined name diagnostic 2017-12-17 22:44:32 -08:00
issue-21600.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-21600.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-21950.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-21950.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-22370.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-22370.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-22560.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-22560.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-22644.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-22644.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-22886.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-22886.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-22933-2.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-22933-2.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-23041.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-23041.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-23173.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-23173.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-23217.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-23217.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-23302.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-23302.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-23543.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-23543.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-23544.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-23544.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-23716.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-23716.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-24036.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-24036.stderr "incompatible arm" diagnostic span tweak 2017-12-25 09:47:22 -08:00
issue-24081.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-24081.stderr Point at def span on redefined name diagnostic 2017-12-17 22:44:32 -08:00
issue-24424.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-24424.stderr On E0283, point at method with the requirements 2018-01-15 14:56:32 -08:00
issue-25385.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-25385.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-25793.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-25793.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-25826.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-25826.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-26056.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-26056.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-26093.rs tests: replace "lvalue" terminology with "place". 2018-01-29 11:48:12 +02:00
issue-26093.stderr tests: replace "lvalue" terminology with "place". 2018-01-29 11:48:12 +02:00
issue-26472.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-26472.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-26638.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-26638.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-26886.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-26886.stderr use correct casing for rename suggestions 2018-01-28 20:48:54 -05:00
issue-27842.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-27842.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-27942.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-27942.stderr Point only at method signatures and point at trait 2018-01-28 17:06:30 -08:00
issue-28568.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-28568.stderr Use def span for conflicting impls and recursive fn 2017-12-17 23:46:55 -08:00
issue-28776.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-28776.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-28837.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-28837.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-28971.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-28971.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-29124.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-29124.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-29723.rs fix line 2018-01-19 16:46:07 -05:00
issue-29723.stderr Add regression test for #29723 2018-01-19 12:28:38 +05:30
issue-30007.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-30007.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-30255.rs Fix rebase 2017-12-14 23:54:08 +03:00
issue-30255.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-30302.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-30302.stderr Various tweaks 2017-12-20 11:03:26 -08:00
issue-30730.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-30730.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-31221.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-31221.stderr Various tweaks 2017-12-20 11:03:26 -08:00
issue-32326.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-32326.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-32950.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-32950.stderr Fix up an ui test 2017-12-20 01:21:40 +09:00
issue-33525.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-33525.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-33941.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-33941.stderr Modify spans of expanded expression 2018-01-26 11:05:02 -08:00
issue-34047.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-34047.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-34209.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-34209.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-35139.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-35139.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-35241.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-35241.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-35675.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-35675.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-35869.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-35869.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-35976.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-35976.stderr Add structured suggestions for proc macro use imports 2017-11-20 09:36:49 +01:00
issue-36163.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-36163.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-36400.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-36400.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-36708.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-36708.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
issue-37884.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
issue-37884.stderr Point only at method signatures and point at trait 2018-01-28 17:06:30 -08:00
issue-40782.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-40782.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-42106.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-42106.stderr Only bump error count when we are sure that the diagnostic is not a repetition. 2018-01-03 00:42:12 +01:00
issue-42954.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-42954.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-43806.rs Don't trigger unused_result on functions returning empty enums 2017-08-11 22:07:28 -07:00
issue-44023.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-44023.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-44078.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-44078.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-44406.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-44406.stderr struct pattern parsing and diagnostic tweaks 2018-01-07 17:04:36 -08:00
issue-45107-unnecessary-unsafe-in-closure.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-45107-unnecessary-unsafe-in-closure.stderr Tweak "unecessary unsafe block" error spans 2017-12-18 11:11:35 -08:00
issue-45296.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-45296.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-45730.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-45730.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
issue-46112.rs Reexport -> re-export in prose and documentation comments 2018-01-15 13:36:53 -05:00
issue-46112.stderr Regression test for issue #46112. 2017-12-12 23:18:53 -06:00
issue-46186.rs Changed to correct quotes 2017-11-26 07:40:29 -07:00
issue-46186.stderr Added 46186 stderr 2017-11-25 19:30:15 -07:00
issue-46332.rs add magic comment for ui test, remove newline 2017-12-01 11:38:30 +03:00
issue-46332.stderr move comparator into +find_best_match_name+ function 2017-12-01 00:39:47 +03:00
issue-46471-1.rs Same change to point at borrow for mir errors 2017-12-15 13:52:05 -08:00
issue-46471-1.stderr Updated tests with fixed span location. 2018-01-27 11:46:22 +00:00
issue-46471.rs Added test for #46471 2017-12-11 19:46:01 +00:00
issue-46471.stderr Updated tests with fixed span location. 2018-01-27 11:46:22 +00:00
issue-46472.rs Added test for #46472 2017-12-11 20:26:06 +00:00
issue-46472.stderr Auto merge of #47791 - estebank:mismatched-trait-impl, r=nikomatsakis 2018-02-03 01:26:56 +00:00
issue-46576.rs Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. 2018-01-02 14:11:41 +01:00
issue-46576.stderr Correct for changes in line numbers in expected stderr output. 2018-01-02 18:12:10 +01:00
issue-46983.rs Added test for #46983 2018-01-10 17:12:23 +00:00
issue-46983.stderr Added test for #46983 2018-01-10 17:12:23 +00:00
issue-47073-zero-padded-tuple-struct-indices.rs in which leading zeroes on tuple-struct accesses are abjured 2017-12-30 21:16:16 -08:00
issue-47073-zero-padded-tuple-struct-indices.stderr in which leading zeroes on tuple-struct accesses are abjured 2017-12-30 21:16:16 -08:00
issue-47094.rs Check all repr hints together when checking for mis-applied attributes 2018-01-01 22:05:29 +01:00
issue-47094.stderr Check all repr hints together when checking for mis-applied attributes 2018-01-01 22:05:29 +01:00
issue-47377.rs fix minor errors 2018-01-17 02:07:15 +05:30
issue-47377.stderr fix minor errors 2018-01-17 02:07:15 +05:30
issue-47380.rs fix minor errors 2018-01-17 02:07:15 +05:30
issue-47380.stderr fix minor errors 2018-01-17 02:07:15 +05:30
issue-47511.rs do not ICE when return type includes unconstrained anon region 2018-01-22 17:36:43 -05:00
issue-47511.stderr do not ICE when return type includes unconstrained anon region 2018-01-22 17:36:43 -05:00
issue-47623.rs Fix ICE with use self; 2018-01-21 12:26:01 +01:00
issue-47623.stderr Fix ICE with use self; 2018-01-21 12:26:01 +01:00
issue-47706-trait.rs Fix regression: account for trait methods in arg count mismatch error 2018-01-29 23:08:16 -05:00
issue-47706-trait.stderr Fix regression: account for trait methods in arg count mismatch error 2018-01-29 23:08:16 -05:00
issue-47706.rs Fix regression: account for impl methods in arg count mismatch error 2018-01-25 10:49:28 -08:00
issue-47706.stderr Fix regression: account for impl methods in arg count mismatch error 2018-01-25 10:49:28 -08:00
lifetime-elision-return-type-requires-explicit-lifetime.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
lifetime-elision-return-type-requires-explicit-lifetime.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
lint-forbid-attr.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
lint-forbid-attr.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
lint-output-format-2.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
lint-output-format-2.stderr Pass correct span when lowering grouped imports 2017-12-26 14:19:49 -05:00
lint-unconditional-recursion.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
lint-unconditional-recursion.stderr Use def span for conflicting impls and recursive fn 2017-12-17 23:46:55 -08:00
liveness-return-last-stmt-semi.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
liveness-return-last-stmt-semi.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
loop-break-value-no-repeat.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
loop-break-value-no-repeat.stderr Suggest removing value from break when invalid 2018-01-28 11:14:09 -08:00
loops-reject-duplicate-labels-2.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
loops-reject-duplicate-labels-2.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
loops-reject-duplicate-labels.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
loops-reject-duplicate-labels.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
loops-reject-labels-shadowing-lifetimes.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
loops-reject-labels-shadowing-lifetimes.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
loops-reject-lifetime-shadowing-label.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
loops-reject-lifetime-shadowing-label.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
macro-context.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
macro-context.stderr Do not emit type errors on recovered blocks 2017-12-21 14:57:42 -08:00
macro-invalid-fragment-spec.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
macro-invalid-fragment-spec.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
macro-shadowing.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
macro-shadowing.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
main-wrong-location.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
main-wrong-location.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
maybe-bounds.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
maybe-bounds.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
method-call-err-msg.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
method-call-err-msg.stderr Do not suggest private traits that have missing method 2018-01-22 08:29:24 -08:00
method-call-lifetime-args-lint.rs Add an extra note to late_bound_lifetime_arguments error/lint 2017-07-19 23:12:58 +03:00
method-call-lifetime-args-lint.stderr Add an extra note to late_bound_lifetime_arguments error/lint 2017-07-19 23:12:58 +03:00
method-call-lifetime-args.rs Add an extra note to late_bound_lifetime_arguments error/lint 2017-07-19 23:12:58 +03:00
method-call-lifetime-args.stderr Add an extra note to late_bound_lifetime_arguments error/lint 2017-07-19 23:12:58 +03:00
method-missing-call.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
method-missing-call.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
missing-block-hint.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
missing-block-hint.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
moves-based-on-type-block-bad.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
moves-based-on-type-block-bad.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
moves-based-on-type-match-bindings.rs Be ambiguous when type cannot be properly mentioned 2018-01-02 19:49:38 -08:00
moves-based-on-type-match-bindings.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
moves-based-on-type-tuple.rs Converted moves-based-on-type-tuple test and added MIR borrowck comparison. 2017-12-22 15:01:47 +00:00
moves-based-on-type-tuple.stderr Converted moves-based-on-type-tuple test and added MIR borrowck comparison. 2017-12-22 15:01:47 +00:00
mut-ref.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
mut-ref.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01: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 Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03: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 Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
non-exhaustive-pattern-witness.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
non-exhaustive-pattern-witness.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
not-enough-arguments.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
not-enough-arguments.stderr Fix rebase 2017-12-14 23:54:08 +03:00
numeric-fields.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
numeric-fields.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
object-safety-associated-consts.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
object-safety-associated-consts.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
object-safety-generics.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
object-safety-generics.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
object-safety-mentions-Self.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
object-safety-mentions-Self.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
object-safety-sized.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
object-safety-sized.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
object-safety-supertrait-mentions-Self.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
object-safety-supertrait-mentions-Self.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03: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 Re-add support for impl Trait for .. to the parser 2018-01-13 19:26:49 +03:00
partialeq_help.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
partialeq_help.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
pat-slice-old-style.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
pat-slice-old-style.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
path-lookahead.rs rustc: Rearchitect lints to be emitted more eagerly 2017-08-09 09:13:51 -07:00
path-lookahead.stderr Add several lints into unused lint group 2017-10-29 22:14:23 +03:00
qualified-path-params-2.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
qualified-path-params-2.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
region-borrow-params-issue-29793-small.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
region-borrow-params-issue-29793-small.stderr Same change to point at borrow for mir errors 2017-12-15 13:52:05 -08:00
regions-fn-subtyping-return-static.rs make lifetimes that only appear in return type early-bound 2017-02-05 16:30:03 -05:00
regions-fn-subtyping-return-static.stderr Fix tests 2017-10-08 23:52:15 +09:00
regions-nested-fns-2.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
regions-nested-fns-2.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
resolve-conflict-item-vs-import.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
resolve-conflict-item-vs-import.stderr use correct casing for rename suggestions 2018-01-28 20:48:54 -05:00
resolve-error.stderr Change some helps to suggestions 2017-07-17 10:03:37 +02:00
resolve-inconsistent-names.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
resolve-inconsistent-names.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
self-impl.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
self-impl.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
shadowed-lifetime.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
shadowed-lifetime.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
shadowed-type-parameter.rs Move type parameter shadowing test to ui 2017-06-28 15:11:05 -07:00
shadowed-type-parameter.stderr report the total number of errors on compilation failure 2017-07-02 16:16:44 +03:00
short-error-format.rs Set short-message feature unstable 2017-11-15 18:13:33 +01:00
short-error-format.stderr Add short message-format 2017-10-20 16:04:32 +02:00
similar-tokens.rs Implement RFC 2128 (use_nested_groups) 2017-11-30 13:10:26 +01:00
similar-tokens.stderr Implement RFC 2128 (use_nested_groups) 2017-11-30 13:10:26 +01:00
specialization-feature-gate-default.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
specialization-feature-gate-default.stderr Add error code for unstable feature errors 2018-01-15 10:28:00 +01:00
specialization-feature-gate-overlap.rs Migrate even more feature gate tests to ui 2017-12-07 10:14:41 +01:00
specialization-feature-gate-overlap.stderr Use def span for conflicting impls and recursive fn 2017-12-17 23:46:55 -08:00
static-lifetime.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
static-lifetime.stderr Point only at method signatures and point at trait 2018-01-28 17:06:30 -08:00
str-concat-on-double-ref.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
str-concat-on-double-ref.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
str-lit-type-mismatch.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
str-lit-type-mismatch.stderr Use suggestions instead of notes ref mismatches 2017-12-01 10:44:29 -08:00
struct-field-init-syntax.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
struct-field-init-syntax.stderr Add error for comma after base struct field 2017-10-11 03:13:25 +02:00
struct-fields-decl-dupe.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
struct-fields-decl-dupe.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
struct-fields-hints-no-dupe.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
struct-fields-hints-no-dupe.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
struct-fields-hints.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
struct-fields-hints.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
struct-fields-too-many.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
struct-fields-too-many.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
struct-path-self-type-mismatch.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
struct-path-self-type-mismatch.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
suggest-private-fields.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
suggest-private-fields.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
svh-change-lit.rs Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
svh-change-lit.stderr Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
svh-change-significant-cfg.rs Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
svh-change-significant-cfg.stderr Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
svh-change-trait-bound.rs Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
svh-change-trait-bound.stderr Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
svh-change-type-arg.rs Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
svh-change-type-arg.stderr Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
svh-change-type-ret.rs Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
svh-change-type-ret.stderr Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
svh-change-type-static.rs Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
svh-change-type-static.stderr Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
svh-use-trait.rs Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
svh-use-trait.stderr Support regexes in custom normalization in UI tests 2017-12-14 23:26:40 +03:00
switched-expectations.rs Fix switched types in type mismatch 2017-12-10 01:20:40 +01:00
switched-expectations.stderr Fix switched types in type mismatch 2017-12-10 01:20:40 +01:00
target-feature-wrong.rs rustc: Refactor attribute checking to operate on HIR 2018-01-13 16:07:13 -08:00
target-feature-wrong.stderr rustc: Refactor attribute checking to operate on HIR 2018-01-13 16:07:13 -08: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 Introduce 'run-pass' header to 'ui' tests in compiletest. Fix issue #36516. 2017-06-02 23:28:22 +08:00
trait-alias.rs feature gate trait aliases 2017-12-14 12:56:26 -05:00
trait-alias.stderr feature gate trait aliases 2017-12-14 12:56:26 -05:00
trait-duplicate-methods.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
trait-duplicate-methods.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
trait-method-private.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
trait-method-private.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
trait-safety-fn-body.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
trait-safety-fn-body.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
trait-suggest-where-clause.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
trait-suggest-where-clause.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
traits-multidispatch-convert-ambig-dest.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
traits-multidispatch-convert-ambig-dest.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
type-annotation-needed.rs On E0283, point at method with the requirements 2018-01-15 14:56:32 -08:00
type-annotation-needed.stderr On E0283, point at method with the requirements 2018-01-15 14:56:32 -08:00
type-recursive.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
type-recursive.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
typeck-builtin-bound-type-parameters.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
typeck-builtin-bound-type-parameters.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
typeck_type_placeholder_item.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
typeck_type_placeholder_item.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
typeck_type_placeholder_lifetime_1.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
typeck_type_placeholder_lifetime_1.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
typeck_type_placeholder_lifetime_2.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
typeck_type_placeholder_lifetime_2.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
unboxed-closure-no-cyclic-sig.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
unboxed-closure-no-cyclic-sig.stderr Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
unboxed-closure-sugar-wrong-trait.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
unboxed-closure-sugar-wrong-trait.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
unboxed-closures-infer-fn-once-move-from-projection.rs Merge cfail and ui tests into ui tests 2017-11-24 11:32:35 +01:00
unboxed-closures-infer-fn-once-move-from-projection.stderr Rework expected closure error 2017-12-18 08:55:52 -08:00
unconstrained-none.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
unconstrained-none.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
unconstrained-ref.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
unconstrained-ref.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
unknown-language-item.rs Point at unknown lang item attribute 2018-01-23 21:36:40 -08:00
unknown-language-item.stderr Point at unknown lang item attribute 2018-01-23 21:36:40 -08:00
unsafe-const-fn.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
unsafe-const-fn.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
unsized-enum2.rs Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
unsized-enum2.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
update-all-references.sh Use more convenient and UNIX-agnostic shebang 2017-12-02 01:03:59 +00:00
update-references.sh Remove excessive trailing newlines. 2017-12-30 15:50:52 +08:00
use-mod.rs Various tweaks 2017-12-20 11:03:26 -08:00
use-mod.stderr use correct casing for rename suggestions 2018-01-28 20:48:54 -05:00
use-nested-groups-error.rs Increase test coverage of use_nested_groups 2018-01-29 17:11:09 +01:00
use-nested-groups-error.stderr Increase test coverage of use_nested_groups 2018-01-29 17:11:09 +01:00
use-nested-groups-unused-imports.rs Fix wrong span for nested empty groups 2018-01-24 23:46:02 +01:00
use-nested-groups-unused-imports.stderr Fix wrong span for nested empty groups 2018-01-24 23:46:02 +01:00
variadic-ffi-3.rs Fix test redux 2018-01-22 15:46:51 -08:00
variadic-ffi-3.stderr Fix test redux 2018-01-22 15:46:51 -08:00
variance-unused-type-param.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
variance-unused-type-param.stderr Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
vector-no-ann.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
vector-no-ann.stderr Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00