]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/issues/issue-37051.rs
New upstream version 1.49.0~beta.4+dfsg1
[rustc.git] / src / test / ui / issues / issue-37051.rs
index 1ccf5b978019006f00999a4bbdd140f8752b6aaa..e0c47197eaa034427219ccc538f435f3920500d8 100644 (file)
@@ -1,7 +1,8 @@
-// compile-pass
-// skip-codegen
+// check-pass
+// ignore-compare-mode-chalk
+
 #![feature(associated_type_defaults)]
-#![allow(warnings)]
+
 trait State: Sized {
     type NextState: State = StateMachineEnded;
     fn execute(self) -> Option<Self::NextState>;
@@ -15,6 +16,4 @@ impl State for StateMachineEnded {
     }
 }
 
-
-fn main() {
-}
+fn main() {}