xref: /llvm-project/llvm/test/tools/llvm-ml/nested_proc_errors.asm (revision 94fae7a581d6772e9f4ec0270485a4308eb8d2dc)
1; RUN: not llvm-ml -filetype=s %s /Fo - 2>&1 | FileCheck %s --implicit-check-not=error:
2
3.code
4
5t1 PROC
6  xor eax, eax
7t1_nested PROC
8  ret
9t1 ENDP
10t1_nested ENDP
11; CHECK: :[[# @LINE - 2]]:1: error: endp does not match current procedure 't1_nested'
12
13END
14