rust-rocksdb-zaidoon1/tests/fail/checkpoint_outlive_db.rs
2024-02-10 11:38:44 -05:00

8 lines
174 B
Rust

use rust_rocksdb::{checkpoint::Checkpoint, DB};
fn main() {
let _checkpoint = {
let db = DB::open_default("foo").unwrap();
Checkpoint::new(&db)
};
}