rust/tests/ui/const-generics/legacy-const-generics.rs

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

19 lines
480 B
Rust
Raw Normal View History

2021-02-23 15:12:28 +00:00
//@ aux-build:legacy-const-generics.rs
//@ run-pass
#![feature(rustc_attrs)]
extern crate legacy_const_generics;
#[rustc_legacy_const_generics(1)]
pub fn bar<const Y: usize>(x: usize, z: usize) -> [usize; 3] {
[x, Y, z]
}
fn main() {
assert_eq!(legacy_const_generics::foo(0 + 0, 1 + 1, 2 + 2), [0, 2, 4]);
assert_eq!(legacy_const_generics::foo::<{1 + 1}>(0 + 0, 2 + 2), [0, 2, 4]);
2021-02-24 02:36:45 +00:00
// FIXME: Only works cross-crate
2021-02-23 15:12:28 +00:00
//assert_eq!(bar(0, 1, 2), [0, 1, 2]);
}