salsa/tests/hash_collision.rs

33 lines
603 B
Rust
Raw Permalink Normal View History

2024-10-12 15:57:30 +00:00
use std::hash::Hash;
#[test]
fn hello() {
use salsa::{Database, DatabaseImpl, Setter};
#[salsa::input]
struct Bool {
value: bool,
}
#[salsa::tracked]
struct True<'db> {}
#[salsa::tracked]
struct False<'db> {}
#[salsa::tracked]
fn hello(db: &dyn Database, bool: Bool) {
if bool.value(db) {
True::new(db);
} else {
False::new(db);
}
}
let mut db = DatabaseImpl::new();
let input = Bool::new(&db, false);
hello(&db, input);
input.set_value(&mut db).to(true);
hello(&db, input);
}