| 12345678910111213141516171819202122232425 |
- // 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
- package ExplorerTest api;
- __mixin Operations {
- fn Square[self: Self](x:i32) -> i32{
- return x * x;
- }
- }
- interface A {
- fn F();
- }
- external impl i32 as A {
- // CHECK:STDERR: SYNTAX ERROR: explorer/testdata/mixin/fail_mix_in_impl.carbon:[[@LINE+1]]: syntax error, unexpected MIX
- __mix Operations;
- fn F() {}
- }
- fn Main() -> i32 { return 0; }
|