1! Function returning an array continaed in a module.  Caused problems 'cos
2! we tried to add the dummy return vars to the parent scope.
3
4Module contained_5
5contains
6FUNCTION test ()
7  REAL, DIMENSION (1) :: test
8  test(1)=0.0
9END FUNCTION
10end module
11