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