1! RUN: %python %S/test_errors.py %s %flang_fc1 2!ERROR: Symbol has a BIND(C) name that is not a valid C language identifier 3subroutine bang() bind(C,name='!') 4end 5!ERROR: Symbol has a BIND(C) name that is not a valid C language identifier 6subroutine cr() bind(C,name=achar(13)) 7end 8!ERROR: Symbol has a BIND(C) name that is not a valid C language identifier 9subroutine beast() bind(C,name="666") 10end 11