SAM(단일 추상 메서드)으로 변환할 수 있는 표현식을 보고합니다.
예:
new Thread(new Runnable { override def run() = println() })
빠른 수정 적용 후:
new Thread(() => println())