<===> input.scss
@mixin testComments {
	/* crash */
	p {
		width: 100px;
	}
}

@media screen and (orientation:landscape) {
	@include testComments;	
}

<===> output.css
@media screen and (orientation: landscape) {
  /* crash */
  p {
    width: 100px;
  }
}