mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-25 22:02:28 +01:00
Allow interleaving of STDOUT and STDERR check lines. Put STDOUT lines after the line they're attached to, and STDERR lines before. If no STDOUT check line is attached to any line, then put them all at the end of the file instead. This is intended to better handle the case where stdout contains unreplaced mentions of line numbers, and also reflects that stdout is typically a consequence of the test rather than commentary on it, so placing it after the test seems likely to read better.
39 lines
813 B
Plaintext
39 lines
813 B
Plaintext
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
// AUTOUPDATE
|
|
|
|
package ExplorerTest api;
|
|
|
|
base class C {
|
|
var value: i32;
|
|
virtual fn Foo[self: Self]() -> i32 {
|
|
return self.value;
|
|
}
|
|
}
|
|
|
|
base class D {
|
|
extend base: C;
|
|
var value: i32;
|
|
impl fn Foo[self: Self]() -> i32 {
|
|
return self.value;
|
|
}
|
|
}
|
|
|
|
fn Main() -> i32 {
|
|
var c: C = {.value = 1};
|
|
Print("c.Foo(): {0}", c.Foo());
|
|
var d: D = {.value = 2, .base = {.value = 1}};
|
|
Print("d.Foo(): {0}", d.Foo());
|
|
var cp: C* = &d;
|
|
Print("(*cp).Foo(): {0}", (*cp).Foo());
|
|
|
|
return 0;
|
|
}
|
|
|
|
// CHECK:STDOUT: c.Foo(): 1
|
|
// CHECK:STDOUT: d.Foo(): 2
|
|
// CHECK:STDOUT: (*cp).Foo(): 2
|
|
// CHECK:STDOUT: result: 0
|