]> git.proxmox.com Git - rustc.git/blame - src/test/ui/nll/issue-57280.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / nll / issue-57280.rs
CommitLineData
60c5eb7d 1// check-pass
0731742a
XL
2
3trait Foo {
4 const BLAH: &'static str;
5}
6
7struct Placeholder;
8
9impl Foo for Placeholder {
10 const BLAH: &'static str = "hi";
11}
12
13fn foo(x: &str) {
14 match x {
15 <Placeholder as Foo>::BLAH => { }
16 _ => { }
17 }
18}
19
20fn main() {}