broken statics2

This commit is contained in:
Andi Jahja
1999-07-08 23:54:15 +00:00
parent 9c6f5d8b05
commit 2dcda381d0

View File

@@ -0,0 +1,20 @@
// Statics overlapped!
//
// Compile statics1.prg, statics2.prg and link both files
static uA, uB
function Test()
QOut( "INSIDE STATICS2.PRG" )
QOut( " static uA, uB" )
QOut( "" )
QOut( " ValType( uA ), ValType( uB ) =>", ValType( uA ), ",", ValType( uB ) )
QOut( " uA, uB =>", uA, ",", uB )
uA := "a"
uB := "b"
QOut( ' uA := "a"' )
QOut( ' uB := "b"' )
QOut( "" )
return nil