Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

add 4 ices #1273

Merged
merged 2 commits into from
May 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions ices/97484.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
struct A;
struct B;
struct C;
struct D;
struct E;
struct F;
struct G;

fn foo(a: &A, d: D, e: &E, g: G) {}

fn main() {
foo(&&A, B, C, D, E, F, G);
}
8 changes: 8 additions & 0 deletions ices/97490.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
pub type Yes = extern "sysv64" fn(&'static u8) -> !;

fn main() {
unsafe {
let yes = &6 as *const _ as *const Yes;
core::arch::asm!("call {}", in(reg) yes, options(noreturn));
}
}
20 changes: 20 additions & 0 deletions ices/97491.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
use std::ops::Sub;

trait Vector2 {
type ScalarType;
fn from_values(x: Self::ScalarType, y: Self::ScalarType) -> Self
where Self: Sized;
fn x(&self) -> Self::ScalarType;
fn y(&self) -> Self::ScalarType;
}

impl<T> Sub for dyn Vector2<ScalarType=T>
where T: Sub<Output=T>,
(dyn Vector2<ScalarType=T>): Sized{
type Output = dyn Vector2<ScalarType=T>;
fn sub(self, rhs: Self) -> Self::Output {
Self::from_values(self.x()-rhs.x(), self.y() - rhs.y())
}
}

fn main() {}
20 changes: 20 additions & 0 deletions ices/97501.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#![feature(core_intrinsics)]
use std::intrinsics::wrapping_add;

#[derive(Clone, Copy)]
struct WrapInt8 {
value: u8
}

impl std::ops::Add for WrapInt8 {
type Output = WrapInt8;
fn add(self, other: WrapInt8) -> WrapInt8 {
wrapping_add(self, other)
}
}

fn main() {
let p = WrapInt8 { value: 123 };
let q = WrapInt8 { value: 234 };
println!("{}", (p + q).value);
}