File: test_common.pro

package info (click to toggle)
gnudatalanguage 0.9.5-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 15,228 kB
  • ctags: 11,455
  • sloc: cpp: 143,352; makefile: 426; sh: 103; ansic: 44; awk: 18; python: 6
file content (30 lines) | stat: -rw-r--r-- 544 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
;
; Alain Coulais 2010, Nov 30.
;
; When compiling MPFIT, current CVS of GDL (0.9) crashes.
; MPFIT was running smoothly before ...
; It fact, it is only due to a problem related to "common" 
; (regression happens between 2010 April 07 and 19)
;
; Problem is at COMPILATION level.
;
pro TEST_PRO_COMMON_ONLY
common c_pro_only, aa
end
;
function TEST_FUN_COMMON_ONLY
common c_fun_only, aa
end
;
pro TEST_PRO_COMMON
common c_pro, aa
z=1
end
;
function TEST_FUN_COMMON
common c_fun, aa
y=2
end
; just to avoid an error message
pro test_common
end