2022-07-17 11:51:39 -05:00
|
|
|
#![crate_name = "c"]
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
|
|
|
|
#[rustc_must_implement_one_of(a, b)]
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ matches c/trait.Trait.html '//*[@class="stab must_implement"]' \
|
2022-07-25 12:12:56 -05:00
|
|
|
// 'At least one of the `a`, `b` methods is required.$'
|
2022-07-17 11:51:39 -05:00
|
|
|
pub trait Trait {
|
|
|
|
fn a() {}
|
|
|
|
fn b() {}
|
|
|
|
}
|