about summary refs log tree commit diff
path: root/tvix/nix-compat-derive-tests/tests/ui/deserialize_from_missing.rs
blob: 913b7c4f7e594b22c097bd0bdf50c76f665e1b3e (plain) (blame)
1
2
3
4
5
6
7
use nix_compat_derive::NixDeserialize;

#[derive(NixDeserialize)]
#[nix(from = "u64")]
pub struct Test;

fn main() {}