a9120832c1f71fcbadf1a5ee185acc2a3a48f85f
[ghc-hetmet.git] / ghc / compiler / parser / maybe.ugn
1 %{
2 #include "hspincl.h"
3 %}
4 %{{
5 module U_maybe where
6 import Ubiq --  debugging consistency check
7 import UgenUtil
8 %}}
9 type maybe;
10         nothing : <> ;
11         just    : < gthing : VOID_STAR; > ;
12 end;