We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents daeecad + 18312b3 commit ec6b165Copy full SHA for ec6b165
1 file changed
c-cpp-book/src/ch03-built-in-types.md
@@ -28,7 +28,7 @@ fn main() {
28
```rust
29
fn foo(x : u8) -> u32
30
{
31
- return x * x;
+ return x as u32 * x as u32;
32
}
33
```
34
- Unused variables are prefixed with ```_``` to avoid compiler warnings
0 commit comments