// 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 // // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/convert.carbon // // AUTOUPDATE // TIP: To test this file alone, run: // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/impl/lookup/import_final.carbon // TIP: To dump output, run: // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/impl/lookup/import_final.carbon // --- interface_z.carbon library "[[@TEST_NAME]]"; interface Z { let X:! type; } class C {} final impl forall [T:! type] T as Z where .X = C {} // --- import_final.carbon library "[[@TEST_NAME]]"; import library "interface_z"; fn F[U:! type](T:! Z) { // The value of `.X` can be known to be `C` here when the impl `T as Z(C)` is // final. let a: T.X = {} as C; }