1# RUN: not llvm-mc -triple=wasm32 %s 2>&1 | FileCheck %s 2 3# CHECK: [[#@LINE+1]]:16: error: Expected identifier, got: 42 4.import_module 42 5 6# CHECK: [[#@LINE+1]]:19: error: Expected ,, instead got: 7.import_module foo 8 9# CHECK: [[#@LINE+1]]:20: error: Expected identifier, got: 10.import_module foo, 11 12# CHECK: [[#@LINE+1]]:24: error: Expected EOL, instead got: , 13.import_module foo, bar, 14