mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-12 08:30:51 +00:00
8 lines
167 B
Rust
8 lines
167 B
Rust
use crate::setup::{ParDatabase, ParDatabaseImpl};
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn snapshot_from_query() {
|
|
let db = ParDatabaseImpl::default();
|
|
db.snapshot_me();
|
|
}
|