summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/GenericCollections.xaml.cs
diff options
context:
space:
mode:
authorStephane Delcroix <stephane@delcroix.org>2016-09-08 20:51:01 +0200
committerJason Smith <jason.smith@xamarin.com>2016-09-08 11:51:01 -0700
commit1f84a4955c93544192f44ba6af5d3593554dc116 (patch)
treecb5006606a772b01fcc3b16cf33c9fd537833a19 /Xamarin.Forms.Xaml.UnitTests/GenericCollections.xaml.cs
parent3b7d798fdda51a669683ed7d5c3770ebf3adfa77 (diff)
downloadxamarin-forms-1f84a4955c93544192f44ba6af5d3593554dc116.tar.gz
xamarin-forms-1f84a4955c93544192f44ba6af5d3593554dc116.tar.bz2
xamarin-forms-1f84a4955c93544192f44ba6af5d3593554dc116.zip
[XamlC] replace the runtime type check by compiletime (#334)
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/GenericCollections.xaml.cs')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/GenericCollections.xaml.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/GenericCollections.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/GenericCollections.xaml.cs
index 95c057b0..c2891e06 100644
--- a/Xamarin.Forms.Xaml.UnitTests/GenericCollections.xaml.cs
+++ b/Xamarin.Forms.Xaml.UnitTests/GenericCollections.xaml.cs
@@ -14,6 +14,11 @@ namespace Xamarin.Forms.Xaml.UnitTests
typeof(GenericCollection),
typeof(AttachedBP),
null);
+
+ public static GenericCollection GetAttachedBP(BindableObject bindable)
+ {
+ throw new NotImplementedException();
+ }
}
public class GenericCollection : ObservableCollection<object>