You've already forked comprehensive-rust
mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-08-08 08:22:52 +02:00
fix build (en) step: scopeguard crate import
This commit is contained in:
@ -3,7 +3,7 @@
|
|||||||
A scope guard makes use of the `Drop` trait to run a given closure when it goes
|
A scope guard makes use of the `Drop` trait to run a given closure when it goes
|
||||||
out of scope.
|
out of scope.
|
||||||
|
|
||||||
```rust
|
```rust,editable,compile_fail
|
||||||
use scopeguard::{ScopeGuard, guard};
|
use scopeguard::{ScopeGuard, guard};
|
||||||
use std::{
|
use std::{
|
||||||
fs::{self, File},
|
fs::{self, File},
|
||||||
@ -48,7 +48,7 @@ fn main() {
|
|||||||
be simplified using
|
be simplified using
|
||||||
[scopeguard's `defer!` macro](https://docs.rs/scopeguard/latest/scopeguard/#defer):
|
[scopeguard's `defer!` macro](https://docs.rs/scopeguard/latest/scopeguard/#defer):
|
||||||
|
|
||||||
```rust
|
```rust,editable,compile_fail
|
||||||
let path = "temp.txt";
|
let path = "temp.txt";
|
||||||
|
|
||||||
scopeguard::defer! {
|
scopeguard::defer! {
|
||||||
|
Reference in New Issue
Block a user