1// Copyright 2014 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4//
5// Flags: --harmony-proxies
6
7var proxy = Proxy.create({ fix: function() { return {}; } });
8Object.preventExtensions(proxy);
9Object.observe(proxy, function(){});
10
11var functionProxy = Proxy.createFunction({ fix: function() { return {}; } }, function(){});
12Object.preventExtensions(functionProxy);
13Object.observe(functionProxy, function(){});
14