| 1234567891011121314151617181920 |
- // 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
- //
- // NOAUTOUPDATE
- // CHECK:STDERR: RUNTIME ERROR: prelude.carbon:{{\d+}}: "Fail"
- package ExplorerTest api;
- class ConvertTo(T:! type) {
- var v: T;
- extend impl as ImplicitAs(T) {
- fn Convert[self: Self]() -> T { return self.v; }
- }
- }
- fn Main() -> i32 {
- Assert({.v = false} as ConvertTo(bool), {.v = "Fail"} as ConvertTo(String));
- return 0;
- }
|