rust/tests/ui/const-generics/defaults/pretty-printing-ast.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
321 B
Rust
Raw Normal View History

// Test the AST pretty printer correctly handles default values for const generics
//@ check-pass
//@ compile-flags: -Z unpretty=expanded
#![crate_type = "lib"]
trait Foo<const KIND: bool = true> {}
fn foo<const SIZE: usize = 5>() {}
2021-04-18 19:57:22 +08:00
struct Range<const FROM: usize = 0, const LEN: usize = 0, const TO: usize = FROM>;