Sign in
android
/
toolchain
/
rustc
/
bcf972c0208490b0eb3ce3c170c2db486ba945b3
/
.
/
src
/
test
/
ui
/
const-generics
/
issues
/
issue-68104-print-stack-overflow.rs
blob: ad5710baae2bf21bdefb7866bfd06ee0bd9d49f0 [
file
] [
log
] [
blame
]
// aux-build:impl-const.rs
// run-pass
#![
feature
(
generic_const_exprs
)]
#![
allow
(
incomplete_features
)]
extern
crate impl_const
;
use
impl_const
::*;
pub
fn
main
()
{
let
n
=
Num
::<
5
>;
n
.
five
();
}