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
{{ message }}
This repository was archived by the owner on Jun 27, 2018. It is now read-only.
<anon>:21:20: 21:21 note: Did you mean to close this delimiter?
<anon>:21 macro_rules! world {
^
<anon>:22:58: 22:59 note: Did you mean to close this delimiter?
<anon>:22 ($($name:ident : $system:ty [ $component:ty ],)*) => {
^
<anon>:113:26: 113:27 note: Did you mean to close this delimiter?
<anon>:113 impl<T> World<T> {
^
<anon>:128:27: 128:28 note: Did you mean to close this delimiter?
<anon>:128 pub fn get<'a>(&'a self, eid: Entity
^
<anon>:128:49: 128:50 error: this file contains an un-closed delimiter
<anon>:128 pub fn get<'a>(&'a self, eid: Entity
^
playpen: application terminated with error code 101
The text was updated successfully, but these errors were encountered:
Fixed by thestinger/playpen@d290e2c. It was a missed edge case in the large amount of new code added to handle piping input from stdin in the event loop. The kernel informs it that the pipe was closed (EPOLLHUP) before it had drained the rest of the input. I didn't realize that could happen from the documentation. This new code needs some serious refactoring.
Reported by @kvark on rust-lang/rust#16302
Steps to reproduce.
Errors I'm getting:
The text was updated successfully, but these errors were encountered: