- 
                Notifications
    You must be signed in to change notification settings 
- Fork 13.9k
Shorten output of E0391 #46282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
          
     Merged
      
      
    
  
     Merged
                    Shorten output of E0391 #46282
Changes from all commits
      Commits
    
    
            Show all changes
          
          
            4 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      aabb604
              
                Move "auto trait leak" impl-trait cycle dependency test to ui
              
              
                estebank 0b2d21e
              
                Make impl-trait ciclical reference error point to def_span
              
              
                estebank 8a93dec
              
                Make main span in impl-trait ciclic reference point to def_span
              
              
                estebank 487daab
              
                Fix test
              
              
                estebank File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
            File renamed without changes.
          
    
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| error[E0277]: the trait bound `std::rc::Rc<std::cell::Cell<i32>>: std::marker::Send` is not satisfied in `impl std::ops::Fn<(i32,)>` | ||
| --> $DIR/auto-trait-leak.rs:27:5 | ||
| | | ||
| 27 | send(before()); | ||
| | ^^^^ `std::rc::Rc<std::cell::Cell<i32>>` cannot be sent between threads safely | ||
| | | ||
| = help: within `impl std::ops::Fn<(i32,)>`, the trait `std::marker::Send` is not implemented for `std::rc::Rc<std::cell::Cell<i32>>` | ||
| = note: required because it appears within the type `[closure@$DIR/auto-trait-leak.rs:21:5: 21:22 p:std::rc::Rc<std::cell::Cell<i32>>]` | ||
| = note: required because it appears within the type `impl std::ops::Fn<(i32,)>` | ||
| = note: required by `send` | ||
|  | ||
| error[E0277]: the trait bound `std::rc::Rc<std::cell::Cell<i32>>: std::marker::Send` is not satisfied in `impl std::ops::Fn<(i32,)>` | ||
| --> $DIR/auto-trait-leak.rs:34:5 | ||
| | | ||
| 34 | send(after()); | ||
| | ^^^^ `std::rc::Rc<std::cell::Cell<i32>>` cannot be sent between threads safely | ||
| | | ||
| = help: within `impl std::ops::Fn<(i32,)>`, the trait `std::marker::Send` is not implemented for `std::rc::Rc<std::cell::Cell<i32>>` | ||
| = note: required because it appears within the type `[closure@$DIR/auto-trait-leak.rs:46:5: 46:22 p:std::rc::Rc<std::cell::Cell<i32>>]` | ||
| = note: required because it appears within the type `impl std::ops::Fn<(i32,)>` | ||
| = note: required by `send` | ||
|  | ||
| error[E0391]: unsupported cyclic reference between types/traits detected | ||
| --> $DIR/auto-trait-leak.rs:52:1 | ||
| | | ||
| 52 | fn cycle1() -> impl Clone { | ||
| | ^^^^^^^^^^^^^^^^^^^^^^^^^ cyclic reference | ||
| | | ||
| note: the cycle begins when processing `cycle1`... | ||
| --> $DIR/auto-trait-leak.rs:52:1 | ||
| | | ||
| 52 | fn cycle1() -> impl Clone { | ||
| | ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| note: ...which then requires processing `cycle2::{{impl-Trait}}`... | ||
| --> $DIR/auto-trait-leak.rs:63:16 | ||
| | | ||
| 63 | fn cycle2() -> impl Clone { | ||
| | ^^^^^^^^^^ | ||
| note: ...which then requires processing `cycle2`... | ||
| --> $DIR/auto-trait-leak.rs:63:1 | ||
| | | ||
| 63 | fn cycle2() -> impl Clone { | ||
| | ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| note: ...which then requires processing `cycle1::{{impl-Trait}}`... | ||
| --> $DIR/auto-trait-leak.rs:52:16 | ||
| | | ||
| 52 | fn cycle1() -> impl Clone { | ||
| | ^^^^^^^^^^ | ||
| = note: ...which then again requires processing `cycle1`, completing the cycle. | ||
|  | ||
| error: aborting due to 3 previous errors | ||
|  | ||
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actual output differs from expected output. Please update.
error[E0391]: unsupported cyclic reference between types/traits detected --> $DIR/auto-trait-leak.rs:52:1 | -52 | fn cycle1() -> impl Clone { - | ^^^^^^^^^^^^^^^^^^^^^^^^^ cyclic reference +52 | fn cycle1() -> impl Clone { + | _-^^^^^^^^^^^^^^^^^^^^^^^^ +53 | | //~^ ERROR unsupported cyclic reference between types/traits detected +54 | | //~| cyclic reference +55 | | //~| NOTE the cycle begins when processing `cycle1`... +... | +60 | | Rc::new(Cell::new(5)) +61 | | } + | |_- cyclic referenceThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missed the label. Done.