| 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
- //
- // AUTOUPDATE
- HEADER
- package User;
- class C {};
- impl C as Core.INTERFACE {
- fn Op[addr self: C*]();
- }
- fn TestOp() {
- var c: C = {};
- OPc;
- }
|