blob: ca0988cbb7f9ebd5584e539f89415a0b8ad950b8 (
plain)
1
2
3
4
5
6
7
8
|
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
*/
var expect = undefined;
var actual = (function foo() { "bogus"; })();
reportCompare(expect, actual, "ok");
|