mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
The semantic crate currently compiles 5 binaries for integration test, this PR merges them into one.
7 lines
148 B
Rust
7 lines
148 B
Rust
pub trait Expect<P, R> {
|
|
#[allow(unused)]
|
|
#[must_use]
|
|
fn expect<F>(self, expectation: F) -> Self
|
|
where
|
|
F: FnOnce(P) -> R;
|
|
}
|