]> git.lizzy.rs Git - rust.git/commitdiff
Fix ICE
authorvarkor <github@varkor.com>
Sun, 19 Aug 2018 23:39:58 +0000 (00:39 +0100)
committervarkor <github@varkor.com>
Sun, 19 Aug 2018 23:39:58 +0000 (00:39 +0100)
src/librustc_typeck/check/mod.rs
src/test/ui/issue-53251.stderr

index 6d4d5188e3147c5794164ed3ce59f6fd814dbd88..8703b99b9592f0fcb380d9db66aab7b88586764e 100644 (file)
@@ -4944,13 +4944,17 @@ pub fn instantiate_value_path(&self,
             // `impl Trait` is treated as a normal generic parameter internally,
             // but we don't allow users to specify the parameter's value
             // explicitly, so we have to do some error-checking here.
-            suppress_errors.insert(index, AstConv::check_generic_arg_count_for_call(
+            let suppress = AstConv::check_generic_arg_count_for_call(
                 self.tcx,
                 span,
                 &generics,
                 &seg,
                 false, // `is_method_call`
-            ));
+            );
+            if suppress {
+                self.set_tainted_by_errors(); // See issue #53251.
+            }
+            suppress_errors.insert(index, suppress);
         }
 
         let has_self = path_segs.last().map(|PathSeg(def_id, _)| {
index bf99e73f0d985ac9809af96217a55096e435990d..b36e9645e17bc33b10cab46c5b6aae01592b762c 100644 (file)
@@ -1,17 +1,12 @@
-error[E0601]: `main` function not found in crate `issue_53251`
-   |
-   = note: consider adding a `main` function to `$DIR/issue-53251.rs`
-
-error[E0087]: too many type parameters provided: expected at most 0 type parameters, found 1 type parameter
-  --> $DIR/issue-53251.rs:21:24
+error[E0087]: wrong number of type arguments: expected 0, found 1
+  --> $DIR/issue-53251.rs:21:17
    |
 LL |                 S::f::<i64>();
-   |                        ^^^ expected 0 type parameters
+   |                 ^^^^^^^^^^^ unexpected type argument
 ...
 LL | impl_add!(a b);
    | --------------- in this macro invocation
 
-error: aborting due to 2 previous errors
+error: aborting due to previous error
 
-Some errors occurred: E0087, E0601.
-For more information about an error, try `rustc --explain E0087`.
+For more information about this error, try `rustc --explain E0087`.