diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/bind_c_18.f90 | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index e85b37c..4bdd6ac 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2018-11-01 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR fortran/46020 + * gfortran.dg/bind_c_18.f90: Adjust error message. + 2018-11-01 Marek Polacek <polacek@redhat.com> * g++.dg/cpp1z/constexpr-lambda22.C: New test, diff --git a/gcc/testsuite/gfortran.dg/bind_c_18.f90 b/gcc/testsuite/gfortran.dg/bind_c_18.f90 index 6360f01..b5d5270 100644 --- a/gcc/testsuite/gfortran.dg/bind_c_18.f90 +++ b/gcc/testsuite/gfortran.dg/bind_c_18.f90 @@ -11,7 +11,7 @@ implicit none END FUNCTION END INTERFACE INTERFACE - FUNCTION two() BIND(C,name="two") RESULT(r) ! { dg-error "cannot be a character string" } + FUNCTION two() BIND(C,name="two") RESULT(r) ! { dg-error "must have length 1" } USE iso_c_binding CHARACTER(kind=C_CHAR,len=2) :: r END FUNCTION |