view tests/parser/array_literal_1.d @ 189:75d0544ddc45

Better error handling on unexpected EOF.
author Anders Johnsen <skabet@gmail.com>
date Fri, 25 Jul 2008 13:50:01 +0200
parents 7b274cfdc1dc
children
line wrap: on
line source


int main()
{
    int[3] x = [1,2,3];
    return x[0];
}