]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-17337.rs
New upstream version 1.60.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-17337.rs
CommitLineData
85aaf69f 1#![feature(staged_api)]
1a4d82fc 2#![deny(deprecated)]
223e47cc 3
dfeec247 4#![unstable(feature = "unstable_test_feature", issue = "none")]
92a42be0 5
1a4d82fc 6struct Foo;
223e47cc 7
1a4d82fc 8impl Foo {
dfeec247 9 #[unstable(feature = "unstable_test_feature", issue = "none")]
92a42be0 10 #[rustc_deprecated(since = "1.0.0", reason = "text")]
1a4d82fc 11 fn foo(self) {}
223e47cc
LB
12}
13
14fn main() {
1a4d82fc 15 Foo
3dfed10e 16 .foo(); //~ ERROR use of deprecated
223e47cc 17}