7 lines
88 B
JavaScript
7 lines
88 B
JavaScript
// Error: :5:7: Unexpected token *
|
|
|
|
function* yieldStarNewLine() {
|
|
yield
|
|
*42;
|
|
}
|