xref: /aosp_15_r20/external/llvm/test/Verifier/2008-11-15-RetVoid.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: not llvm-as < %s 2>&1 | FileCheck %s
2; CHECK: value doesn't match function result type 'void'
3
4define void @foo() {
5  ret i32 0
6}
7