@function test-while() {
  $x : true;
  @while $x {
    @return $x
  }
}

div {
  y: test-while();
}