1; Test for PR902.  This program is erroneous, but should not crash llvm-as.
2; This tests that a simple error is caught and processed correctly.
3; RUN: not llvm-as < %s >/dev/null 2> %t
4; RUN: grep "floating point constant invalid for type" %t
5
6define void @test() {
7  add i32 1, 2.0
8  ret void
9}
10