<!-- Please provide a clear and concise description of what the bug is. Include screenshots if needed. Please test using the latest version of the relevant React packages to make sure your issue has not already been fixed. --> React version: v16 ## Steps To Reproduce ```js import React from "react"; export const Q = React.memo(() => {}); export const Z = React.forwardRef(() => {}); export default function App() { return ( <> <Q /> <Z /> </> ); } ``` Link to code example: https://codesandbox.io/s/hoc-throw-null-xrhwg ## The current behavior No errors. ## The expected behavior > Nothing was returned from render. This usually means a return statement is missing. Or, to render nothing, return null.