Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
const-generics
/
issues
/
issue-68104-print-stack-overflow.rs
blob: 0c5e72bb87897b2973222971e05b929ef05afbdc [
file
] [
log
] [
blame
] [
edit
]
//@ 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
();
}