Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Commit

Permalink
ices/84737.sh: fixed with no errors
Browse files Browse the repository at this point in the history
=== stdout ===
=== stderr ===
warning: unnecessary braces around const expression
 --> <anon>:5:26
  |
5 | async fn test(test: [(); { 0 }]) {
  |                          ^^ ^^
  |
  = note: `#[warn(unused_braces)]` on by default
help: remove these braces
  |
5 - async fn test(test: [(); { 0 }]) {
5 + async fn test(test: [(); 0]) {
  | 

warning: function is never used: `test`
 --> <anon>:5:10
  |
5 | async fn test(test: [(); { 0 }]) {
  |          ^^^^
  |
  = note: `#[warn(dead_code)]` on by default

warning: 2 warnings emitted

==============
  • Loading branch information
rustbot committed Jan 11, 2022
1 parent 0f4cfc5 commit 17f0350
Showing 1 changed file with 0 additions and 0 deletions.
File renamed without changes.

0 comments on commit 17f0350

Please sign in to comment.