summaryrefslogtreecommitdiff
path: root/tests/enum_from_zeroes.rs
blob: 3fedcb15f0dce72b1f70623259eb3444f48abb5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright 2022 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#![allow(warnings)]

mod util;

use {static_assertions::assert_impl_all, zerocopy::FromZeroes};

#[derive(FromZeroes)]
enum Foo {
    A,
}

assert_impl_all!(Foo: FromZeroes);

#[derive(FromZeroes)]
enum Bar {
    A = 0,
}

assert_impl_all!(Bar: FromZeroes);

#[derive(FromZeroes)]
enum Baz {
    A = 1,
    B = 0,
}

assert_impl_all!(Baz: FromZeroes);