]> git.lizzy.rs Git - rust.git/commitdiff
Update comments
authorNathan Corbyn <me@nathancorbyn.com>
Tue, 9 Jun 2020 10:14:41 +0000 (11:14 +0100)
committerNathan Corbyn <me@nathancorbyn.com>
Tue, 9 Jun 2020 10:14:41 +0000 (11:14 +0100)
src/librustc_error_codes/error_codes/E0583.md
src/librustc_error_codes/error_codes/E0761.md

index 2dcbbf8855669136fd0bb37b99feba0ddb69e758..701900bb0cd4be8d966b3ff8c084bd678f2b4a6e 100644 (file)
@@ -2,7 +2,7 @@ A file wasn't found for an out-of-line module.
 
 Erroneous code example:
 
-```ignore (compile_fail not working here; see Issue #43707)
+```compile_fail,E0583
 mod file_that_doesnt_exist; // error: file not found for module
 
 fn main() {}
index e22ebcdc431900406f21d2d5af96c8f22cb74717..c01574e413cfaa62ec8077e3b6ce3075b373299c 100644 (file)
@@ -14,7 +14,7 @@ fn foo() {}
 fn foo() {}
 ```
 
-```ignore (compile_fail not working here; see Issue #43707)
+```ignore (multiple source files required for compile_fail)
 mod ambiguous_module; // error: file for module `ambiguous_module`
                       // found at both ambiguous_module.rs and
                       // ambiguous_module.rs/mod.rs