mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-23 13:10:19 +00:00
4f234cfbb9
You can now do `#[salsa::tracked(specify)]` and you will get a method `some_fn::specify(...)` that can be used to specify the value.
8 lines
181 B
Rust
8 lines
181 B
Rust
//! This crate has the beginning of various unit tests on salsa 2022
|
|
//! code.
|
|
|
|
mod tracked_fn_on_input;
|
|
mod tracked_fn_on_tracked;
|
|
mod tracked_fn_on_tracked_specify;
|
|
|
|
fn main() {}
|