gm2
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gm2] gm2 hangs-up with subrange set type


From: Martin Kalbfuß
Subject: [Gm2] gm2 hangs-up with subrange set type
Date: Mon, 05 Oct 2009 16:43:59 +0200

#################################
MODULE SetTest;

TYPE BigSet = SET OF [0..100000];
                                                                                
        
BEGIN
        (******)                                               
END SetTest.
#################################

Hangs-up the compiler

But

#################################
MODULE SetTest;

TYPE BigSet = SET OF [0..10000];
                                                                                
        
BEGIN
        (******)                                               
END SetTest.
#################################

and

#################################
MODULE SetTest;

TYPE BigSet = SET OF CARDINAL:
                                                                                
        
BEGIN
        (******)                                               
END SetTest.
#################################

Does not.

If I understand the set type correctly a SET OF CARDINAL is bigger then
the first set.






reply via email to

[Prev in Thread] Current Thread [Next in Thread]