about summary refs log tree commit diff
path: root/src/test/ui/issue-59764.stderr
AgeCommit message (Collapse)AuthorLines
2019-05-24Move some issues into the issues foldervarkor-241/+0
2019-04-18hide `--explain` hint if error has no extended infoAndy Russell-1/+1
2019-04-12Switch to multipart suggestions.David Wood-32/+29
This commit changes the suggestion so that it is split into multiple parts in an effort to reduce the impact the applied suggestion could have on formatting.
2019-04-12Improve robustness of nested check.David Wood-4/+21
This commit removes the assumption that the start of a use statement will always be on one line with a single space - which was silly in the first place.
2019-04-12Handle edge cases.David Wood-5/+190
This commit introduces more dirty span manipulation into the compiler in order to handle the various edge cases in moving/renaming the macro import so it is at the root of the import.
2019-04-12Handle renamed imports.David Wood-4/+16
This commit extends the suggestion to handle imports that are aliased to another name.
2019-04-12Suggest macro import from crate root.David Wood-3/+9
This commit suggests importing a macro from the root of a crate as the intent may have been to import a macro from the definition location that was annotated with `#[macro_export]`.
2019-04-07Add test with current behaviour.David Wood-0/+24
This commit adds a test demonstrating the current behaviour when a macro defined in a module with the `#[macro_export]` is imported from the module rather than the crate root.