mirror of
https://github.com/zama-ai/tfhe-rs.git
synced 2026-01-09 14:47:56 -05:00
11 lines
165 B
Rust
11 lines
165 B
Rust
use static_assertions::assert_impl_all;
|
|
|
|
use tfhe_versionable::Version;
|
|
|
|
#[derive(Version)]
|
|
pub struct MyUnit;
|
|
|
|
fn main() {
|
|
assert_impl_all!(MyUnit: Version);
|
|
}
|