Merge pull request #3457 from babel/T7272

Add test for T7272
This commit is contained in:
Logan Smyth 2016-04-18 23:35:49 -07:00
commit e7d37f342c
3 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1 @@
export const state = (state) => state.a

View File

@ -0,0 +1,8 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
var state = exports.state = function state(_state) {
return _state.a;
};

View File

@ -0,0 +1,3 @@
{
"presets": ["es2015"]
}