diff options
author | Unknown <leino@LEINO6.redmond.corp.microsoft.com> | 2012-03-07 15:29:21 -0800 |
---|---|---|
committer | Unknown <leino@LEINO6.redmond.corp.microsoft.com> | 2012-03-07 15:29:21 -0800 |
commit | 68f2b9caf8b5d64399eb8e74daf75788bec74e4f (patch) | |
tree | 8baa9b14b92f456dbdf71a6f68ef09948d614f54 /Test | |
parent | a80b6e51cb202c823a47150a0be2c87a6a61374a (diff) |
Dafny: removed a now-inferred type-parameter instantiation in a test file
Diffstat (limited to 'Test')
-rw-r--r-- | Test/vstte2012/RingBufferAuto.dfy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/vstte2012/RingBufferAuto.dfy b/Test/vstte2012/RingBufferAuto.dfy index b02022c7..712236a8 100644 --- a/Test/vstte2012/RingBufferAuto.dfy +++ b/Test/vstte2012/RingBufferAuto.dfy @@ -65,7 +65,7 @@ class {:autocontracts} RingBuffer<T> method TestHarness(x: int, y: int, z: int)
{
- var b := new RingBuffer<int>.Create(2);
+ var b := new RingBuffer.Create(2);
b.Enqueue(x);
b.Enqueue(y);
var h := b.Dequeue(); assert h == x;
|