mirror of
https://github.com/salsa-rs/salsa.git
synced 2024-11-25 04:27:52 +00:00
13 lines
208 B
Rust
13 lines
208 B
Rust
|
mod a {
|
||
|
#[salsa::interned]
|
||
|
pub struct MyInterned<'db> {
|
||
|
field: u32,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn test<'db>(db: &'db dyn salsa::Database, interned: a::MyInterned<'db>) {
|
||
|
interned.field(db);
|
||
|
}
|
||
|
|
||
|
fn main() {}
|