Skip to content

Commit 45558c4

Browse files
authored
Merge pull request #715 from ehuss/code-block-audit
Audit code blocks.
2 parents 1ad8c2e + f8e76ee commit 45558c4

28 files changed

+193
-95
lines changed

src/abi.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ The *`link_section` attribute* specifies the section of the object file that a
6868
[function] or [static]'s content will be placed into. It uses the
6969
[_MetaNameValueStr_] syntax to specify the section name.
7070

71-
```rust,ignore
71+
<!-- no_run: don't link. The format of the section name is platform-specific. -->
72+
```rust,no_run
7273
#[no_mangle]
7374
#[link_section = ".example_section"]
7475
pub static VAR1: u32 = 1;
@@ -80,7 +81,7 @@ The *`export_name` attribute* specifies the name of the symbol that will be
8081
exported on a [function] or [static]. It uses the [_MetaNameValueStr_] syntax
8182
to specify the symbol name.
8283

83-
```rust,ignore
84+
```rust
8485
#[export_name = "exported_symbol_name"]
8586
pub fn name_in_rust() { }
8687
```

src/attributes/codegen.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ enable code generation of that function for specific platform architecture
4949
features. It uses the [_MetaListNameValueStr_] syntax with a single key of
5050
`enable` whose value is a string of comma-separated feature names to enable.
5151

52-
```rust,ignore
52+
```rust
53+
# #[cfg(target_feature = "avx2")]
5354
#[target_feature(enable = "avx2")]
5455
unsafe fn foo_avx2() {}
5556
```

src/attributes/type_system.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ Non-exhaustive types cannot be constructed outside of the defining crate:
6666
with a [_StructExpression_] \(including with [functional update syntax]).
6767
- [`enum`][enum] instances can be constructed in an [_EnumerationVariantExpression_].
6868

69-
```rust,ignore (requires multiple crates)
69+
<!-- ignore: requires external crates -->
70+
```rust,ignore
7071
// `Config`, `Error`, and `Message` are types defined in an upstream crate that have been
7172
// annotated as `#[non_exhaustive]`.
7273
use upstream::{Config, Error, Message};
@@ -99,7 +100,8 @@ There are limitations when matching on non-exhaustive types outside of the defin
99100
- When pattern matching on a non-exhaustive [`enum`][enum], matching on a variant does not
100101
contribute towards the exhaustiveness of the arms.
101102

102-
```rust, ignore (requires multiple crates)
103+
<!-- ignore: requires external crates -->
104+
```rust, ignore
103105
// `Config`, `Error`, and `Message` are types defined in an upstream crate that have been
104106
// annotated as `#[non_exhaustive]`.
105107
use upstream::{Config, Error, Message};

src/conditional-compilation.md

+2
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,7 @@ When the configuration predicate is true, this attribute expands out to the
264264
attributes listed after the predicate. For example, the following module will
265265
either be found at `linux.rs` or `windows.rs` based on the target.
266266

267+
<!-- ignore: `mod` needs multiple files -->
267268
```rust,ignore
268269
#[cfg_attr(linux, path = "linux.rs")]
269270
#[cfg_attr(windows, path = "windows.rs")]
@@ -273,6 +274,7 @@ mod os;
273274
Zero, one, or more attributes may be listed. Multiple attributes will each be
274275
expanded into separate attributes. For example:
275276

277+
<!-- ignore: fake attributes -->
276278
```rust,ignore
277279
#[cfg_attr(feature = "magic", sparkles, crackles)]
278280
fn bewitched() {}

src/crates-and-source-files.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ that apply to the containing module, most of which influence the behavior of
5353
the compiler. The anonymous crate module can have additional attributes that
5454
apply to the crate as a whole.
5555

56-
```rust,no_run
56+
```rust
5757
// Specify the crate name.
5858
#![crate_name = "projx"]
5959

@@ -75,7 +75,8 @@ essentially to treat the source file as an executable script. The shebang
7575
can only occur at the beginning of the file (but after the optional
7676
_UTF8BOM_). It is ignored by the compiler. For example:
7777

78-
```text,ignore
78+
<!-- ignore: tests don't like shebang -->
79+
```rust,ignore
7980
#!/usr/bin/env rustx
8081
8182
fn main() {
@@ -136,7 +137,7 @@ other object being linked to defines `main`.
136137
The *`crate_name` [attribute]* may be applied at the crate level to specify the
137138
name of the crate with the [_MetaNameValueStr_] syntax.
138139

139-
```rust,ignore
140+
```rust
140141
#![crate_name = "mycrate"]
141142
```
142143

src/expressions/await-expr.md

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ context, there must be some task context available.
5151
Effectively, an `<expr>.await` expression is roughly
5252
equivalent to the following (this desugaring is not normative):
5353

54+
<!-- ignore: example expansion -->
5455
```rust,ignore
5556
match /* <expr> */ {
5657
mut pinned => loop {

src/expressions/field-expr.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ A _field expression_ consists of an expression followed by a single dot and an
1010
field of a [struct] or [union]. To call a function stored in a struct,
1111
parentheses are needed around the field expression.
1212

13+
<!-- ignore: needs lots of support code -->
1314
```rust,ignore
1415
mystruct.myfield;
1516
foo().x;

src/expressions/if-expr.md

+3
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ assert_eq!(a, 3);
9797

9898
An `if let` expression is equivalent to a [`match` expression] as follows:
9999

100+
<!-- ignore: expansion example -->
100101
```rust,ignore
101102
if let PATS = EXPR {
102103
/* body */
@@ -107,6 +108,7 @@ if let PATS = EXPR {
107108

108109
is equivalent to
109110

111+
<!-- ignore: expansion example -->
110112
```rust,ignore
111113
match EXPR {
112114
PATS => { /* body */ },
@@ -135,6 +137,7 @@ of the language (the implementation of if-let chains - see [eRFC 2947][_eRFCIfLe
135137
When lazy boolean operator expression is desired, this can be achieved
136138
by using parenthesis as below:
137139

140+
<!-- ignore: psuedo code -->
138141
```rust,ignore
139142
// Before...
140143
if let PAT = EXPR && EXPR { .. }

src/expressions/loop-expr.md

+4
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ while let _ = 5 {
9393
A `while let` loop is equivalent to a `loop` expression containing a [`match`
9494
expression] as follows.
9595

96+
<!-- ignore: expansion example -->
9697
```rust,ignore
9798
'label: while let PATS = EXPR {
9899
/* loop body */
@@ -101,6 +102,7 @@ expression] as follows.
101102

102103
is equivalent to
103104

105+
<!-- ignore: expansion example -->
104106
```rust,ignore
105107
'label: loop {
106108
match EXPR {
@@ -156,6 +158,7 @@ assert_eq!(sum, 55);
156158

157159
A for loop is equivalent to the following block expression.
158160

161+
<!-- ignore: expansion example -->
159162
```rust,ignore
160163
'label: for PATTERN in iter_expr {
161164
/* loop body */
@@ -164,6 +167,7 @@ A for loop is equivalent to the following block expression.
164167

165168
is equivalent to
166169

170+
<!-- ignore: expansion example -->
167171
```rust,ignore
168172
{
169173
let result = match IntoIterator::into_iter(iter_expr) {

src/expressions/operator-expr.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,9 @@ functions and macros in the standard library can then use that assumption
260260
above, these operators implicitly take shared borrows of their operands,
261261
evaluating them in [place expression context][place expression]:
262262

263-
```rust,ignore
263+
```rust
264+
# let a = 1;
265+
# let b = 1;
264266
a == b;
265267
// is equivalent to
266268
::std::cmp::PartialEq::eq(&a, &b);

src/items/enumerations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ using a [primitive representation] or the [`C` representation].
9191

9292
It is an error when two variants share the same discriminant.
9393

94-
```rust,ignore
94+
```rust,compile_fail
9595
enum SharedDiscriminantError {
9696
SharedA = 1,
9797
SharedB = 1
@@ -107,7 +107,7 @@ enum SharedDiscriminantError2 {
107107
It is also an error to have an unspecified discriminant where the previous
108108
discriminant is the maximum value for the size of the discriminant.
109109

110-
```rust,ignore
110+
```rust,compile_fail
111111
#[repr(u8)]
112112
enum OverflowingDiscriminantError {
113113
Max = 255,

src/items/extern-crates.md

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ In this case the `as` clause must be used to specify the name to bind it to.
2828

2929
Three examples of `extern crate` declarations:
3030

31+
<!-- ignore: requires external crates -->
3132
```rust,ignore
3233
extern crate pcre;
3334
@@ -43,6 +44,7 @@ details).
4344

4445
Here is an example:
4546

47+
<!-- ignore: requires external crates -->
4648
```rust,ignore
4749
// Importing the Cargo package hello-world
4850
extern crate hello_world; // hyphen replaced with an underscore

src/items/external-blocks.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ By default external blocks assume that the library they are calling uses the
6464
standard C ABI on the specific platform. Other ABIs may be specified using an
6565
`abi` string, as shown here:
6666

67-
```rust,ignore
67+
```rust
6868
// Interface to the Windows API
6969
extern "stdcall" { }
7070
```
@@ -97,7 +97,7 @@ There are also some platform-specific ABI strings:
9797
Functions within external blocks may be variadic by specifying `...` after one
9898
or more named arguments in the argument list:
9999

100-
```rust,ignore
100+
```rust
101101
extern {
102102
fn foo(x: i32, ...);
103103
}
@@ -128,6 +128,7 @@ name for the items within an `extern` block when importing symbols from the
128128
host environment. The default module name is `env` if `wasm_import_module` is
129129
not specified.
130130

131+
<!-- ignore: requires extern linking -->
131132
```rust,ignore
132133
#[link(name = "crypto")]
133134
extern {
@@ -156,7 +157,7 @@ The `link_name` attribute may be specified on declarations inside an `extern`
156157
block to indicate the symbol to import for the given function or static. It
157158
uses the [_MetaNameValueStr_] syntax to specify the name of the symbol.
158159

159-
```rust,ignore
160+
```rust
160161
extern {
161162
#[link_name = "actual_symbol_name"]
162163
fn name_in_rust();
@@ -184,4 +185,4 @@ restrictions as [regular function parameters].
184185
[_Visibility_]: ../visibility-and-privacy.md
185186
[_WhereClause_]: generics.md#where-clauses
186187
[attributes]: ../attributes.md
187-
[regular function parameters]: functions.md#attributes-on-function-parameters
188+
[regular function parameters]: functions.md#attributes-on-function-parameters

src/items/functions.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ the body of the function will short-cut that implicit return, if reached.
5858

5959
For example, the function above behaves as if it was written as:
6060

61+
<!-- ignore: example expansion -->
6162
```rust,ignore
6263
// argument_0 is the actual first argument passed from the caller
6364
let (value, _) = argument_0;
@@ -115,14 +116,16 @@ sufficient context to determine the type parameters. For example,
115116
The `extern` function qualifier allows providing function _definitions_ that can
116117
be called with a particular ABI:
117118

119+
+<!-- ignore: fake ABI -->
118120
```rust,ignore
119-
extern "ABI" fn foo() { ... }
121+
extern "ABI" fn foo() { /* ... */ }
120122
```
121123

122124
These are often used in combination with [external block] items which provide
123125
function _declarations_ that can be used to call functions without providing
124126
their _definition_:
125127

128+
+<!-- ignore: fake ABI -->
126129
```rust,ignore
127130
extern "ABI" {
128131
fn foo(); /* no body */
@@ -376,6 +379,7 @@ For example, the following code defines an inert `some_inert_attribute` attribut
376379
is not formally defined anywhere and the `some_proc_macro_attribute` procedural macro is
377380
responsible for detecting its presence and removing it from the output token stream.
378381

382+
<!-- ignore: requires proc macro -->
379383
```rust,ignore
380384
#[some_proc_macro_attribute]
381385
fn foo_oof(#[some_inert_attribute] arg: u8) {

src/items/generics.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ types when defining the item. It is an error to have `Copy` or `Clone`as a
6969
bound on a mutable reference, [trait object] or [slice][arrays] or `Sized` as a
7070
bound on a trait object or slice.
7171

72-
```rust,ignore
72+
```rust,compile_fail
7373
struct A<T>
7474
where
7575
T: Iterator, // Could use A<T: Iterator> instead
@@ -92,6 +92,7 @@ attributes may give meaning to it.
9292
This example shows using a custom derive attribute to modify the meaning of a
9393
generic parameter.
9494

95+
<!-- ignore: requires proc macro derive -->
9596
```rust,ignore
9697
// Assume that the derive for MyFlexibleClone declared `my_flexible_clone` as
9798
// an attribute it understands.

src/items/modules.md

+3
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ For `path` attributes on modules not inside inline module blocks, the file
7474
path is relative to the directory the source file is located. For example, the
7575
following code snippet would use the paths shown based on where it is located:
7676

77+
<!-- ignore: requires external files -->
7778
```rust,ignore
7879
#[path = "foo.rs"]
7980
mod c;
@@ -95,6 +96,7 @@ it is the same except the path starts with a directory with the name of the
9596
non-mod-rs module. For example, the following code snippet would use the paths
9697
shown based on where it is located:
9798

99+
<!-- ignore: requires external files -->
98100
```rust,ignore
99101
mod inline {
100102
#[path = "other.rs"]
@@ -110,6 +112,7 @@ Source File | `inner`'s File Location | `inner`'s Module Path
110112
An example of combining the above rules of `path` attributes on inline modules
111113
and nested modules within (applies to both mod-rs and non-mod-rs files):
112114

115+
<!-- ignore: requires external files -->
113116
```rust,ignore
114117
#[path = "thread_files"]
115118
mod thread {

src/items/unions.md

+10-6
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,11 @@ The expression above creates a value of type `MyUnion` and initializes the
3535
storage using field `f1`. The union can be accessed using the same syntax as
3636
struct fields:
3737

38-
```rust,ignore
39-
let f = u.f1;
38+
```rust
39+
# union MyUnion { f1: u32, f2: f32 }
40+
#
41+
# let u = MyUnion { f1: 1 };
42+
let f = unsafe { u.f1 };
4043
```
4144

4245
## Reading and writing union fields
@@ -135,18 +138,19 @@ have to be adjusted to account for this fact. As a result, if one field of a
135138
union is borrowed, all its remaining fields are borrowed as well for the same
136139
lifetime.
137140

138-
```rust,ignore
141+
```rust,compile_fail
142+
# union MyUnion { f1: u32, f2: f32 }
139143
// ERROR: cannot borrow `u` (via `u.f2`) as mutable more than once at a time
140144
fn test() {
141145
let mut u = MyUnion { f1: 1 };
142146
unsafe {
143147
let b1 = &mut u.f1;
144-
---- first mutable borrow occurs here (via `u.f1`)
148+
// ---- first mutable borrow occurs here (via `u.f1`)
145149
let b2 = &mut u.f2;
146-
^^^^ second mutable borrow occurs here (via `u.f2`)
150+
// ^^^^ second mutable borrow occurs here (via `u.f2`)
147151
*b1 = 5;
148152
}
149-
- first borrow ends here
153+
// - first borrow ends here
150154
assert_eq!(unsafe { u.f1 }, 5);
151155
}
152156
```

src/items/use-declarations.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ use crate::foo::baz::foobaz; // good: foo is at the root of the crate
9898

9999
mod foo {
100100

101-
mod example {
101+
pub mod example {
102102
pub mod iter {}
103103
}
104104

@@ -124,9 +124,14 @@ fn main() {}
124124
> accessing items in the crate root. Using the example above, the following
125125
> `use` paths work in 2015 but not 2018:
126126
>
127-
> ```rust,ignore
127+
> ```rust,edition2015
128+
> # mod foo {
129+
> # pub mod example { pub mod iter {} }
130+
> # pub mod baz { pub fn foobaz() {} }
131+
> # }
128132
> use foo::example::iter;
129133
> use ::foo::baz::foobaz;
134+
> # fn main() {}
130135
> ```
131136
>
132137
> The 2015 edition does not allow use declarations to reference the [extern prelude].

0 commit comments

Comments
 (0)