Created
May 9, 2016 07:41
-
-
Save cfmitrah/c7f8f74dc8d835270ba64abc25ef5e23 to your computer and use it in GitHub Desktop.
CF 2016 Bug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
clos = function( func ) { func(); }; | |
clos( function(){ | |
clos( function(){ | |
writeDump( foo ?: "I am null" ); | |
} ); | |
} ); | |
</cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment