mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
This creates a namespace for `package` scope. It looks like names of class_decls in namespaces lead to an unexpected instref. This is already true, as best as I can tell. I'm not sure if there's a preferred approach to address that, so I've left a TODO for now.
29 lines
1.1 KiB
Plaintext
29 lines
1.1 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
|
|
//
|
|
// AUTOUPDATE
|
|
|
|
// TODO: The `const` in the return type should not be necessary.
|
|
fn F(p: const (const (const i32*)*)) -> const i32 {
|
|
return **p;
|
|
}
|
|
|
|
// CHECK:STDOUT: --- nested_const.carbon
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: file {
|
|
// CHECK:STDOUT: package: <namespace> = namespace {.F = %F}
|
|
// CHECK:STDOUT: %F: <function> = fn_decl @F
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: fn @F(%p: const (const (const i32*)*)) -> const i32 {
|
|
// CHECK:STDOUT: !entry:
|
|
// CHECK:STDOUT: %p.ref: const (const (const i32*)*) = name_ref p, %p
|
|
// CHECK:STDOUT: %.loc9_11.1: ref const (const i32*) = deref %p.ref
|
|
// CHECK:STDOUT: %.loc9_11.2: const (const i32*) = bind_value %.loc9_11.1
|
|
// CHECK:STDOUT: %.loc9_10.1: ref const i32 = deref %.loc9_11.2
|
|
// CHECK:STDOUT: %.loc9_10.2: const i32 = bind_value %.loc9_10.1
|
|
// CHECK:STDOUT: return %.loc9_10.2
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|