mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-25 13:30:16 +01:00
32 lines
981 B
Plaintext
32 lines
981 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
|
|
|
|
fn F(a: i32);
|
|
|
|
fn G(a: i32);
|
|
|
|
// CHECK:STDOUT: --- param_same_name.carbon
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: file {
|
|
// CHECK:STDOUT: package: <namespace> = namespace [template] {
|
|
// CHECK:STDOUT: .F = %F
|
|
// CHECK:STDOUT: .G = %G
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT: %F: <function> = fn_decl @F [template] {
|
|
// CHECK:STDOUT: %a.loc7_6.1: i32 = param a
|
|
// CHECK:STDOUT: @F.%a: i32 = bind_name a, %a.loc7_6.1
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT: %G: <function> = fn_decl @G [template] {
|
|
// CHECK:STDOUT: %a.loc9_6.1: i32 = param a
|
|
// CHECK:STDOUT: @G.%a: i32 = bind_name a, %a.loc9_6.1
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: fn @F(%a: i32);
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: fn @G(%a: i32);
|
|
// CHECK:STDOUT:
|