view test/sync1.d @ 248:890b4862ec6c trunk

[svn r265] generate debug info for global variables only if they don't have external linkage
author ChristianK
date Tue, 10 Jun 2008 20:01:04 +0200
parents 61615fa85940
children
line wrap: on
line source

module sync1;

void main()
{
    int i;
    int j;
    synchronized j = i;
}