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

#[derive(NixDeserialize)]
#[nix(from_str)]
pub struct Test;

fn main() {}