We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0a8451 commit 291bbcfCopy full SHA for 291bbcf
packages/react-scripts/fixtures/kitchensink/src/features/syntax/AsyncAwait.js
@@ -17,6 +17,16 @@ async function load() {
17
];
18
}
19
20
+/* eslint-disable */
21
+// Regression test for https://github.com/facebookincubator/create-react-app/issues/3055
22
+const x = async (
23
+ /* prettier-ignore */
24
+ y: void
25
+) => {
26
+ const z = await y;
27
+};
28
+/* eslint-enable */
29
+
30
export default class extends Component {
31
static propTypes = {
32
onReady: PropTypes.func.isRequired,
0 commit comments