| Index: tests/standalone/io/process_exit_negative_test.dart | 
| diff --git a/tests/standalone/io/process_exit_negative_test.dart b/tests/standalone/io/process_exit_negative_test.dart | 
| index 6e739780d0bd2156119e569b45f25bb8ce109476..0e5e445c84a60e78020e05e596a3cbad54d5234c 100644 | 
| --- a/tests/standalone/io/process_exit_negative_test.dart | 
| +++ b/tests/standalone/io/process_exit_negative_test.dart | 
| @@ -9,8 +9,8 @@ | 
| #source("process_test_util.dart"); | 
|  | 
| void main() { | 
| -  Process p = new Process.start(getProcessTestFileName(), | 
| -                                const ["0", "0", "0", "0"]); | 
| +  Process p = Process.start(getProcessTestFileName(), | 
| +                            const ["0", "0", "0", "0"]); | 
| p.onExit = (int s) { | 
| print(a.toString());  // Should cause a compilation error here. | 
| p.close(); | 
|  |