2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
info: Unicode symbols in function name are allowed
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 13_A14
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Defining function name with unicode symbols
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
eval("function __func\u0041(__arg){return __arg;};");
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#1
|
|
|
|
if (typeof __funcA !== "function") {
|
|
|
|
$ERROR('#1: unicode symbols in function name are allowed');
|
|
|
|
}
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|