You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Show nowarn / Wconf filters for a warning with @nowarn("verbose")
As already implemented in Scala 3
```
scala> @nowarn("v") def f = try 1
^
warning: A try without a catch or finally is equivalent to putting its body in a block; no exceptions are handled.
Applicable -Wconf / @nowarn filters for this warning: msg=<part of the message>, cat=other, site=f
def f: Int
```
0 commit comments