fork of https://github.com/rust-rocksdb/rust-rocksdb for nextgraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
356 B
11 lines
356 B
4 years ago
|
error[E0597]: `db` does not live long enough
|
||
|
--> $DIR/snapshot_outlive_db.rs:6:9
|
||
|
|
|
||
|
4 | let _snapshot = {
|
||
|
| --------- borrow later stored here
|
||
|
5 | let db = DB::open_default("foo").unwrap();
|
||
|
6 | db.snapshot()
|
||
|
| ^^ borrowed value does not live long enough
|
||
|
7 | };
|
||
|
| - `db` dropped here while still borrowed
|