aboutsummaryrefslogtreecommitdiff
path: root/flang/test/Semantics/cuf03.cuf
diff options
context:
space:
mode:
Diffstat (limited to 'flang/test/Semantics/cuf03.cuf')
-rw-r--r--flang/test/Semantics/cuf03.cuf3
1 files changed, 2 insertions, 1 deletions
diff --git a/flang/test/Semantics/cuf03.cuf b/flang/test/Semantics/cuf03.cuf
index 41bfbb7..7384a10 100644
--- a/flang/test/Semantics/cuf03.cuf
+++ b/flang/test/Semantics/cuf03.cuf
@@ -51,7 +51,8 @@ module m
contains
attributes(device) subroutine devsubr(n,da)
integer, intent(in) :: n
- real, device :: da(*) ! ok
+ !ERROR: Object 'da' with ATTRIBUTES(DEVICE) may not be assumed size
+ real, device :: da(*)
real, managed :: ma(n) ! ok
!WARNING: Pointer 'dp' may not be associated in a device subprogram
real, device, pointer :: dp