1# RUN: not llvm-mc -triple i386-linux-gnu %s 2> %t.err | FileCheck %s
2# RUN: FileCheck < %t.err %s --check-prefix=CHECK-ERR
3
4T1:
5# CHECK: e
6# CHECK: 2.718281828459045235
7.print "e"
8.print "2.718281828459045235"
9
10T2:
11# CHECK-ERR: expected double quoted string after .print
12.altmacro
13.print <pi>
14.noaltmacro
15
16T3:
17# CHECK-ERR: expected end of statement
18.print "a" "misplaced-string"
19