salsa/salsa-2022-tests/main.rs
Niko Matsakis 4f234cfbb9 remove component and replace with specify option
You can now do `#[salsa::tracked(specify)]` and you will
get a method `some_fn::specify(...)` that can be used to
specify the value.
2022-08-05 02:51:13 -04:00

9 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() {}