2017-01-04 17:19:54 -06:00
|
|
|
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2018-08-29 06:20:43 -05:00
|
|
|
#![feature(min_const_fn)]
|
2017-01-04 17:19:54 -06:00
|
|
|
|
|
|
|
const fn foo() -> i64 {
|
|
|
|
3
|
|
|
|
}
|
|
|
|
|
2017-01-11 01:50:24 -06:00
|
|
|
const fn bar(x: i64) -> i64 {
|
|
|
|
x*2
|
|
|
|
}
|
|
|
|
|
2017-01-04 17:19:54 -06:00
|
|
|
fn main() {
|
|
|
|
let val = &(foo() % 2);
|
|
|
|
assert_eq!(*val, 1);
|
2017-01-11 01:50:24 -06:00
|
|
|
|
|
|
|
let val2 = &(bar(1+1) % 3);
|
|
|
|
assert_eq!(*val2, 1);
|
2017-01-04 17:19:54 -06:00
|
|
|
}
|