blob: fcce4aaaaafb87d33742c747d0519e60e08d57ec [file] [log] [blame]
'use strict';
var constant = require('../../function/constant')
, o = { b: constant('c') };
module.exports = function (t, a) {
a(t('b')(o), 'c');
};