// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`comments.js 1`] = ` function a() { const a = 5; // comment return a; } function a() { const a = 5; /* comment */ return a; } function a() { const a = 5; /* comment */ /* comment */ return a; } function a() { const a = 5; /* comment */ /* comment */ // comment return a; } function a() { const a = 5; /* comment */ /* comment */ // comment return a; } ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ function a() { const a = 5; // comment return a; } function a() { const a = 5; /* comment */ return a; } function a() { const a = 5; /* comment */ /* comment */ return a; } function a() { const a = 5; /* comment */ /* comment */ // comment return a; } function a() { const a = 5; /* comment */ /* comment */ // comment return a; } `;