Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • shchen/cs320
  • raveendr/cs320
  • mwojnaro/cs320
3 results
Show changes
Showing
with 58 additions and 0 deletions
object FunDef
def foo(i: Int(32)): Int(32) = 42
end FunDef
object FunDef
def foo(i: Int(32),): Int(32) = { 42 }
end FunDef
object FunDef
def foo(i: Int(32) j: Int(32)): Int = { 42 }
end FunDef
object IfPrecedence
if (true) { 1 } else { 0 } + 42
end IfPrecedence
\ No newline at end of file
object IntError
def foo(): Int = { 42 }
end IntError
\ No newline at end of file
object IntError
def foo(): Int(64) = { 42 }
end IntError
\ No newline at end of file
object IntError
def foo(): Int(true) = { 42 }
end IntError
\ No newline at end of file
object Match
x match {
case y => z
} + 1
end Match
object Operand
true || (x && )
end Operand
object TypeWidth
def foo(): Boolean(32) = { true }
end TypeWidth
\ No newline at end of file
object Unary
--x
end Unary
object UnlosedModule
object UnmatchedModule
end Module
\ No newline at end of file
object UnmatchedParen
1 + ( 2 - 3
end UnmatchedParen
object Val
1 + val x: Int(32) = 42; x
end Val
object Val
val x = 42; x
end Val
object Val
val x: Int(32) = val y: Int = 10; 5; 42
end Val
object Foo.bar
end Foo.bar
object WrongQName
abstract class Foo.bar
end WrongQName
object WrongQName
case class Foo() extends Baz.bar
end WrongQName