| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // 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
- interface I {
- let T:! type;
- let N:! i32;
- }
- // CHECK:STDOUT: --- assoc_const.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %.1: type = interface_type @I [template]
- // CHECK:STDOUT: %Self: I = bind_symbolic_name Self 0 [symbolic]
- // CHECK:STDOUT: %.2: type = assoc_entity_type @I, type [template]
- // CHECK:STDOUT: %.3: <associated type in I> = assoc_entity element0, @I.%T [template]
- // CHECK:STDOUT: %.4: type = assoc_entity_type @I, i32 [template]
- // CHECK:STDOUT: %.5: <associated i32 in I> = assoc_entity element1, @I.%N [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = %Core
- // CHECK:STDOUT: .I = %I.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
- // CHECK:STDOUT: %I.decl: type = interface_decl @I [template = constants.%.1] {}
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: interface @I {
- // CHECK:STDOUT: %Self: I = bind_symbolic_name Self 0 [symbolic = constants.%Self]
- // CHECK:STDOUT: %T: type = assoc_const_decl T [template]
- // CHECK:STDOUT: %.loc8: <associated type in I> = assoc_entity element0, %T [template = constants.%.3]
- // CHECK:STDOUT: %N: i32 = assoc_const_decl N [template]
- // CHECK:STDOUT: %.loc9: <associated i32 in I> = assoc_entity element1, %N [template = constants.%.5]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = %Self
- // CHECK:STDOUT: .T = %.loc8
- // CHECK:STDOUT: .N = %.loc9
- // CHECK:STDOUT: witness = (%T, %N)
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|