cairo-native 0.9.0-rc.3

A compiler to convert Cairo's IR Sierra code to MLIR and execute it.
1
2
3
4
5
6
7
8
9
10
11
#[test]
fn test_tuple_clone() {
    let tup = (array![10_u32, 11, 12], array![20_u64, 21, 22], array![30, 31, 32]);
    assert!(tup.clone() == tup);
}

#[test]
fn test_fixed_sized_array_clone() {
    let arr = [array![10, 11, 12], array![20, 21, 22], array![30, 31, 32]];
    assert!(arr.clone() == arr);
}