|
|
@@ -0,0 +1,33 @@
|
|
|
+// 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/min_prelude/facet_types.carbon
|
|
|
+// EXTRA-ARGS: --no-dump-sem-ir --custom-core
|
|
|
+//
|
|
|
+// AUTOUPDATE
|
|
|
+// TIP: To test this file alone, run:
|
|
|
+// TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/impl/lookup/min_prelude/import_final.carbon
|
|
|
+// TIP: To dump output, run:
|
|
|
+// TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/impl/lookup/min_prelude/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;
|
|
|
+}
|