Files
carbon-lang/explorer/testdata/generic_function/apply.carbon
T
Richard Smith e26bc32343 Change remaining uses of Bool to bool, following #750. (#1901)
The most significant change here is that explorer now uses the chosen spelling
rather than the old `Bool` spelling. Also update a few documentation examples
and some skeletal design docs to use the chosen spelling.
2022-08-03 17:55:34 -07:00

29 lines
732 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
//
// RUN: %{explorer} %s 2>&1 | \
// RUN: %{FileCheck} --match-full-lines --allow-unused-prefixes=false %s
// RUN: %{explorer} --parser_debug --trace_file=- %s 2>&1 | \
// RUN: %{FileCheck} --match-full-lines --allow-unused-prefixes %s
// AUTOUPDATE: %{explorer} %s
// CHECK: result: -2
package ExplorerTest api;
fn apply[T:! Type, U:! Type](f: __Fn (T) -> U, x: T) -> U {
return f(x);
}
fn positive(x: bool) -> i32 {
if (x) {
return 2;
} else {
return -2;
}
}
fn Main() -> i32 {
return apply(positive, false);
}