xref: /llvm-project/llvm/test/Assembler/inalloca-parse-error0.ll (revision 75a479221b72c8b4827470485949cebf67d1c967)
1; RUN: not llvm-as < %s 2>&1 | FileCheck %s
2
3; CHECK: <stdin>:[[@LINE+1]]:40: error: expected '('{{$}}
4define void @test_inalloca(ptr inalloca) {
5  ret void
6}
7