Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
deprecation
/
try-macro-suggestion.rs
blob: 0775f0011001fc1c5f7472cd97096056ab44afdd [
file
] [
log
] [
blame
]
//@ edition: 2018
fn
foo
()
->
Result
<(),
()>
{
Ok
(
try
!());
//~ ERROR use of deprecated `try` macro
Ok
(
try
!(
Ok
(())))
//~ ERROR use of deprecated `try` macro
}
fn
main
()
{
let
_
=
foo
();
}