summaryrefslogtreecommitdiff
path: root/Test/vstte2012
diff options
context:
space:
mode:
authorGravatar Unknown <leino@LEINO6.redmond.corp.microsoft.com>2012-03-07 15:29:21 -0800
committerGravatar Unknown <leino@LEINO6.redmond.corp.microsoft.com>2012-03-07 15:29:21 -0800
commitb51cb25d206af503b8b6551d73deb30a8f73d59c (patch)
tree83a269b7cee2e12990ed38450a57c7a27bf0ead4 /Test/vstte2012
parente84cd11c77d9d93429ee175b4008d3893ecfe7df (diff)
Dafny: removed a now-inferred type-parameter instantiation in a test file
Diffstat (limited to 'Test/vstte2012')
-rw-r--r--Test/vstte2012/RingBufferAuto.dfy2
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;