summaryrefslogtreecommitdiff
path: root/Test/dafny0/Trait/TraitExtend.dfy
blob: f0e9dd33806212c983f2f85c83af349dc383bae9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// RUN: %dafny /compile:0 /print:"%t.print" /dprint:"%t.dprint" "%s" > "%t"
// RUN: %diff "%s.expect" "%t"

trait t
{
  var f: int;
   
  function method Plus (x:int, y:int) : int
    requires x>y;
  {
    x + y
  }
   
  function method Mul (x:int, y:int, z:int) : int
    requires x>y;
  {
    x * y * z
  }
   
  //function method BodyLess1() : int
   
  static method GetPhoneNumber (code:int, n:int) returns (z:int)
  {
    z := code + n;
  }
   
  method TestPhone ()
  {
    var num : int;
    num := GetPhoneNumber (10, 30028);
  }
}

class c1 extends t
{
  method P2(x:int, y:int) returns (z:int)
    requires x>y;
  {
    z:= Plus(x,y) + Mul (x,y,1);
    var j:int := Mul (x,y);   //error, too few parameters in calling inherited method
    var k:int := Plus(x,y,1); //error, too many parameters in calling inherited method 
  }
}