* (all files)
* stripped svn header
* minor cleanups
; use following command to find out the history of files:
git log
git log --follow
git blame
git annotate
12 lines
124 B
Plaintext
12 lines
124 B
Plaintext
//NOTEST
|
|
|
|
// Testing Harbour duplicate variable definition detection
|
|
|
|
PROCEDURE Main()
|
|
|
|
LOCAL a, a
|
|
|
|
? "ok"
|
|
|
|
RETURN
|