// 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_circular_mixing.carbon:[[@LINE+1]]: 'M3' has not been declared yet
  __mix M3;
}

__mixin M2 {
  fn F2() {
  }
  __mix M1;
}

__mixin M3 {
  __mix M2;
  fn F3() {
  }
}

class C {
  __mix M2;
}

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