about summary refs log tree commit diff
path: root/compiler/rustc_error_codes/src
diff options
context:
space:
mode:
authorChris Midgley <chris.midgley@dunecomputers.co.uk>2021-07-27 19:44:50 +0100
committerChris Midgley <chris.midgley@dunecomputers.co.uk>2021-07-27 19:44:50 +0100
commitbc70252f5039281388028faf2adec9c6f58aeab3 (patch)
treee5c147c091220efbc4302f29ca115b3fe7be1fad /compiler/rustc_error_codes/src
parent7f563f7f4e279c9a556537f0b99e9eec076782ae (diff)
downloadrust-bc70252f5039281388028faf2adec9c6f58aeab3.tar.gz
rust-bc70252f5039281388028faf2adec9c6f58aeab3.zip
Mark code as ignored due to requiring external plugin
Diffstat (limited to 'compiler/rustc_error_codes/src')
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0498.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0498.md b/compiler/rustc_error_codes/src/error_codes/E0498.md
index 822a1a9138a..c9ea4a7947f 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0498.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0498.md
@@ -12,7 +12,7 @@ The `#[plugin]` attribute should take a single argument: the name of the plugin.
 
 For example, for the plugin `foo`:
 
-```
+```ignore (requires external plugin crate)
 #![feature(plugin)]
 #![plugin(foo)] // ok!
 ```