| 1234567891011121314151617 |
- // 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
- // RUN: %{carbon-run-lowering}
- // CHECK:STDOUT: ; ModuleID = '{{.*}}/toolchain/lowering/testdata/basics/zero.carbon'
- // CHECK:STDOUT: source_filename = "{{.*}}/toolchain/lowering/testdata/basics/zero.carbon"
- // CHECK-EMPTY:
- // CHECK:STDOUT: define i32 @Main() {
- // CHECK:STDOUT: entry:
- // CHECK:STDOUT: ret i32 0
- // CHECK:STDOUT: }
- fn Main() -> i32 {
- return 0;
- }
|