cab2f0561c0f83167373ac4e265901d0d5568cee
[platform/framework/web/crosswalk-tizen.git] /
1 // issue #223
2 ( function() {
3   var x = 1;
4   foo( bar(), baz() );
5 }() );
6
7 // issue #250
8 ( function( $ ) {
9   x;
10 }( jQuery ) );
11
12 ;!function( x ) {
13   console.log( x )
14 }( 'bar' )