mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:20:11 +01:00
Just replacing AUTOUPDATE with NOAUTOUPDATE, and removing the autoupdate script. Tests will still run, but autoupdate may need to be fixed if significant changes are made. I noticed this while trying to autoupdate for #4007 (because we verify that tests have been autoupdated). Autoupdate was likely broken by #3449. Trying to run with no changes gives: ``` CHECK failure at testing/file_test/file_test_base.cpp:801: !absl::GetFlag(FLAGS_test_targets_file).empty(): Missing --test_targets_file. ``` This is because the `file_test` rule creates a file with test inputs that it runs with, which the prebuilt binary doesn't provide. A local kludge to create a `file_test` target not using prebuilt_binary showed another error: ``` : CommandLine Error: Option ': CommandLine Error: Option 'parser_debug' registered more than once! LLVM ERROR: inconsistency in registered CommandLine options trace_phase' registered more than once! LLVM ERROR: inconsistency in registered CommandLine options ``` I'm thinking here that the explorer code hasn't been in enough use, and we're seeing some rot as a consequence. Rather than trying to maintain it, I'm suggesting to go with NOAUTOUPDATE.
60 lines
1.8 KiB
Plaintext
60 lines
1.8 KiB
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
|
|
//
|
|
// NOAUTOUPDATE
|
|
|
|
package ExplorerTest api;
|
|
|
|
class Class { var a: i32; }
|
|
class GenericClass(T:! type) { var a: T; }
|
|
interface Interface { fn Make() -> Self; }
|
|
interface GenericInterface(T:! type) { fn Make() -> (Self, T); }
|
|
|
|
alias ClassAlias = Class;
|
|
alias GenericClassAlias = GenericClass;
|
|
alias ClassSpecializationAlias = GenericClassAlias(i32);
|
|
alias InterfaceAlias = Interface;
|
|
alias GenericInterfaceAlias = GenericInterface;
|
|
alias InterfaceSpecializationAlias = GenericInterfaceAlias(i32);
|
|
|
|
impl ClassAlias as InterfaceAlias {
|
|
fn Make() -> Self { return {.a = 1}; }
|
|
}
|
|
impl ClassSpecializationAlias as InterfaceSpecializationAlias {
|
|
fn Make() -> (Self, i32) { return ({.a = 2}, 3); }
|
|
}
|
|
alias S = {.a: i32};
|
|
impl GenericClassAlias(S) as GenericInterfaceAlias(S) {
|
|
fn Make() -> (Self, {.a: i32}) { return ({.a = {.a = 4}}, {.a = 5}); }
|
|
}
|
|
|
|
fn CheckImplementsInterface[T:! Interface](x: T) -> T {
|
|
return T.Make();
|
|
}
|
|
fn CheckImplementsGenericInterface_i32
|
|
[T:! GenericInterface(i32)](x: T) -> (T, i32) {
|
|
return T.Make();
|
|
}
|
|
fn CheckImplementsGenericInterface_struct
|
|
[T:! GenericInterface(S)](x: T) -> (T, S) {
|
|
return T.Make();
|
|
}
|
|
|
|
fn Main() -> i32 {
|
|
var a: Class = {.a = 0};
|
|
a = CheckImplementsInterface(a);
|
|
|
|
var b: GenericClass(i32) = {.a = 0};
|
|
var (b2: GenericClass(i32), n: i32) =
|
|
CheckImplementsGenericInterface_i32(b);
|
|
|
|
var c: GenericClass({.a: i32}) = {.a = {.a = 0}};
|
|
var (c2: GenericClass({.a: i32}), s: S) =
|
|
CheckImplementsGenericInterface_struct(c);
|
|
|
|
return 10000 * a.a + 1000 * b2.a + 100 * n + 10 * c2.a.a + s.a;
|
|
}
|
|
|
|
// CHECK:STDOUT: result: 12345
|