brintos

brintos / llvm-project-archived public Read only

0
0
Text · 198 B · 6c06079 Raw
12 lines · plain
1// RUN: cir-opt %s -verify-diagnostics2 3module {4  cir.func @l0() {5    cir.return6  }7 8  cir.func @l1() alias(@l0) { // expected-error {{function alias shall not have a body}}9    cir.return10  }11}12