Chromium Code Reviews
|
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2013 Google Inc. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "lib.h" | |
| 6 | |
| 7 #include <fstream> | |
| 8 | |
| 9 void f() { | |
| 10 std::ofstream out("prog.cc"); | |
| 11 | |
| 12 out << "int main() { return 0; }\n"; | |
| 13 } | |
| OLD | NEW |