Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/query-group-macro/tests/arity.rs')
| -rw-r--r-- | crates/query-group-macro/tests/arity.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/query-group-macro/tests/arity.rs b/crates/query-group-macro/tests/arity.rs index f1b29612a1..f7cd4893fe 100644 --- a/crates/query-group-macro/tests/arity.rs +++ b/crates/query-group-macro/tests/arity.rs @@ -2,16 +2,16 @@ use query_group_macro::query_group; #[query_group] pub trait ArityDb: salsa::Database { - #[salsa::invoke_interned(one)] + #[salsa::transparent] fn one(&self, a: ()) -> String; - #[salsa::invoke_interned(two)] + #[salsa::transparent] fn two(&self, a: (), b: ()) -> String; - #[salsa::invoke_interned(three)] + #[salsa::transparent] fn three(&self, a: (), b: (), c: ()) -> String; - #[salsa::invoke_interned(none)] + #[salsa::transparent] fn none(&self) -> String; } |