rust/tests/rustdoc-js/tuple-unit.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
364 B
Rust
Raw Normal View History

pub struct P;
pub struct Q;
pub struct R<T>(T);
// Checks that tuple and unit both work
2024-06-03 07:35:56 +00:00
pub fn side_effect() {}
// Check a non-tuple
2024-06-03 07:35:56 +00:00
pub fn not_tuple() -> P {
loop {}
}
// Check a 1-tuple
2024-06-03 07:35:56 +00:00
pub fn one() -> (P,) {
loop {}
}
// Check a 2-tuple
2024-06-03 07:35:56 +00:00
pub fn two() -> (P, P) {
loop {}
}
// Check a nested tuple
2024-06-03 07:35:56 +00:00
pub fn nest() -> (Q, R<(u32,)>) {
loop {}
}