aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/unsigned_16.f90
blob: 34eb9d3f6c3e77d553b3bc208b0936e3e3028412 (plain)
1
2
3
4
5
6
7
8
9
10
! { dg-do compile }
! { dg-options "-funsigned -pedantic" }
! Some checks with -pedantic.
program main
  unsigned :: u
  print *,-129u_1 ! { dg-error "Negation of unsigned constant" }
  print *,256u_1 ! { dg-error "Unsigned constant truncated" }
  u = 1u
  u = -u ! { dg-error "Negation of unsigned expression" }
end program