2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2018-08-31 13:58:57 +00:00
|
|
|
#![allow(stable_features)]
|
|
|
|
|
2015-05-05 12:47:04 +00:00
|
|
|
// A very basic test of const fn functionality.
|
|
|
|
|
2021-04-18 16:36:41 +00:00
|
|
|
#![feature(const_indexing)]
|
2015-05-05 12:47:04 +00:00
|
|
|
|
|
|
|
const fn add(x: u32, y: u32) -> u32 {
|
|
|
|
x + y
|
|
|
|
}
|
|
|
|
|
|
|
|
const fn sub(x: u32, y: u32) -> u32 {
|
|
|
|
x - y
|
|
|
|
}
|
|
|
|
|
2016-01-14 14:03:48 +00:00
|
|
|
const unsafe fn div(x: u32, y: u32) -> u32 {
|
|
|
|
x / y
|
|
|
|
}
|
|
|
|
|
2015-12-16 17:44:15 +00:00
|
|
|
const fn generic<T>(t: T) -> T {
|
|
|
|
t
|
|
|
|
}
|
|
|
|
|
|
|
|
const fn generic_arr<T: Copy>(t: [T; 1]) -> T {
|
|
|
|
t[0]
|
|
|
|
}
|
|
|
|
|
2015-05-05 12:47:04 +00:00
|
|
|
const SUM: u32 = add(44, 22);
|
|
|
|
const DIFF: u32 = sub(44, 22);
|
2016-01-14 14:03:48 +00:00
|
|
|
const DIV: u32 = unsafe{div(44, 22)};
|
2015-05-05 12:47:04 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
assert_eq!(SUM, 66);
|
|
|
|
assert!(SUM != 88);
|
|
|
|
|
|
|
|
assert_eq!(DIFF, 22);
|
2016-01-14 14:03:48 +00:00
|
|
|
assert_eq!(DIV, 2);
|
2015-05-05 12:47:04 +00:00
|
|
|
|
2015-11-27 15:43:24 +00:00
|
|
|
let _: [&'static str; sub(100, 99) as usize] = ["hi"];
|
2015-12-16 17:44:15 +00:00
|
|
|
let _: [&'static str; generic(1)] = ["hi"];
|
|
|
|
let _: [&'static str; generic_arr([1])] = ["hi"];
|
2015-05-05 12:47:04 +00:00
|
|
|
}
|