Skip to content

Commit b37ca5e

Browse files
committed
Add missing final
1 parent 425b0f0 commit b37ca5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/src/scala/quoted/Type.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ abstract class Type[T] extends Quoted {
99
/** Some basic type tags, currently incomplete */
1010
object Type {
1111

12-
class TaggedPrimitive[T] private[Type] (implicit val ct: ClassTag[T]) extends Type[T] {
12+
final class TaggedPrimitive[T] private[Type] (implicit val ct: ClassTag[T]) extends Type[T] {
1313
override def toString: String = s"Type($ct)"
1414
}
1515

0 commit comments

Comments
 (0)