Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_8_5 / regress / regress-584578.js
1 // Any copyright is dedicated to the Public Domain.
2 // http://creativecommons.org/licenses/publicdomain/
3 // Contributor: Jesse Ruderman <jruderman@gmail.com>
4
5 try {
6   var x = Proxy.create( {get:function(r,name){return {}[name]}} );
7   x.watch('e', function(){});
8 } catch (exc) {
9 }
10
11 reportCompare(0, 0, 'ok');