view tests/parser/public_1.d @ 179:2a1a635bd531

Changes the way messages can be displayed. Also added a toString to DType's for type printing.
author Anders Johnsen <skabet@gmail.com>
date Fri, 25 Jul 2008 01:21:07 +0200
parents 6e6355fb5f0f
children
line wrap: on
line source


public struct name
{
static:
    public void foo()
    {
    }
public
{
    private void bar()
    {
    }
auto:
    final int i;
}

static:
    public void food()
    {
    }
    private void bard()
    {
    }
    final int id;
}

void main()
{
}