// 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;

__mixin M1 {
  fn F1[self: Self](x: Self) -> Self{
     return x;
  }
  // CHECK:STDERR: COMPILATION ERROR: fail_recursive_mixing.carbon:[[@LINE+1]]: incomplete mixin `M1` used in mix declaration
  __mix M1;
}

class C {
  __mix M1;
}

fn Main() -> i32 {
  return 0;
}
